Examples of PdExternalDestination


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

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

        }
        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
Copyright © 2018 www.massapi.com. 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.