Package org.foray.fotree.fo.prop

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


     * @return The requested page-dimension.
     */
    private int getPageDimension(final FObj fobj, final AbsoluteAxis axis) {
        final FoProperty propertyType = AbstractPageDimension.rawPropertyType(
                axis);
        final AbstractPageDimension property = (AbstractPageDimension)
                getProperty(propertyType);
        if (property != null) {
            return property.getValue(fobj);
        }
        // Try the shorthand.
        /* Null context is OK, because the object can't be inside a marker. */
        final FoContext context = null;
        final PdSize sizeProperty = (PdSize) getProperty(FoProperty.SIZE);
View Full Code Here

TOP

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

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.