Examples of dependsOnPd()


Examples of org.foray.fotree.fo.prop.PdContentHeight.dependsOnPd()

    public boolean isContentHeightDependent(final FObj fobj,
            final FoContext context) {
        final PdContentHeight property = (PdContentHeight) getProperty(
                FoProperty.CONTENT_HEIGHT);
        if (property != null) {
            return property.dependsOnPd(fobj, context);
        }
        /* Initial value is "auto", which makes the scaling factor fixed. */
        return false;
    }

View Full Code Here

Examples of org.foray.fotree.fo.prop.PdContentWidth.dependsOnPd()

    public boolean isContentWidthDependent(final FObj fobj,
            final FoContext context) {
        final PdContentWidth property = (PdContentWidth) getProperty(
                FoProperty.CONTENT_WIDTH);
        if (property != null) {
            return property.dependsOnPd(fobj, context);
        }
        /* Initial value is "auto", which makes the scaling factor fixed. */
        return false;
    }

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.