Examples of PdInlineProgressionDimension


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

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

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

     * Indicates whether this object's inline-progression-dimension is "auto".
     * @param fobj The FObj to which the property belongs.
     * @return True iff this object's inline-progression-dimension is "auto".
     */
    public boolean isIpdAuto(final FObj fobj) {
        final PdInlineProgressionDimension property =
                (PdInlineProgressionDimension) getProperty(
                FoProperty.INLINE_PROGRESSION_DIMENSION);
        if (property == null) {
            /* The property is not inherited, and the initial value is
             * "auto". */
            return true;
        }
        return property.isAuto(fobj);
    }
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.