Package org.locationtech.udig.document.model

Examples of org.locationtech.udig.document.model.AbstractHotlinkDocument


     * @param monitor
     * @return true if successful, otherwise false
     */
    private boolean setHotlink(SimpleFeature feature, String attributeName, String value,
            IProgressMonitor monitor) {
        final AbstractHotlinkDocument doc = (AbstractHotlinkDocument) getDocument(feature,
                attributeName, monitor);
        final String encodedValue = encodeInfo(doc.getContentType(), value);
        doc.setInfo(value);
        feature.setAttribute(attributeName, encodedValue);
        return true;
    }
View Full Code Here

TOP

Related Classes of org.locationtech.udig.document.model.AbstractHotlinkDocument

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.