Examples of PdInternalDestination


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

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

    /**
     * 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
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.