Package org.foray.fotree.fo.prop

Examples of org.foray.fotree.fo.prop.PdExternalDestination


    /**
     * Returns the external-destination property.
     * @return The external-destination property.
     */
    public String getExternalDestination() {
        final PdExternalDestination property =
                (PdExternalDestination) getProperty(
                        FoProperty.EXTERNAL_DESTINATION);
        if (property != null) {
            return property.getValue();
        }
        return PdExternalDestination.getValueNoInstance();
    }
View Full Code Here


        }
        case EXTENT: {
            return new PdExtent(fobj, propertyFullName, attributeValue);
        }
        case EXTERNAL_DESTINATION: {
            return new PdExternalDestination(fobj, propertyFullName,
                    attributeValue);
        }
        case FLOAT: {
            return new org.foray.fotree.fo.prop.PdFloat(fobj, propertyFullName,
                    attributeValue);
View Full Code Here

TOP

Related Classes of org.foray.fotree.fo.prop.PdExternalDestination

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.