Package org.foray.fotree.fo.prop

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


        case INLINE_PROGRESSION_DIMENSION: {
            return new PdInlineProgressionDimension(fobj, propertyFullName,
                    attributeValue);
        }
        case INTERNAL_DESTINATION: {
            return new PdInternalDestination(fobj, propertyFullName,
                    attributeValue);
        }
        case INTRINSIC_SCALE_VALUE: {
            return new PdIntrinsicScaleValue(fobj, propertyFullName,
                    attributeValue);
View Full Code Here


    /**
     * Returns the internal-destination property.
     * @return The internal-destination property.
     */
    public String getInternalDestination() {
        final PdInternalDestination property = (PdInternalDestination)
                getProperty(FoProperty.INTERNAL_DESTINATION);
        if (property != null) {
            return property.getValue();
        }
        return PdInternalDestination.getValueNoInstance();
    }
View Full Code Here

TOP

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

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.