Package org.foray.fotree.fo.prop

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


        /* If we got this far, it means that the corresponding absolute margin
         * was not specified, so we just need to find the right relative
         * indent value and return it. */

        AbstractIndent indent = null;
        final FoProperty rawPropertyType = AbstractIndent.rawPropertyType(
                direction);
        indent = (AbstractIndent) getProperty(rawPropertyType);
        if (indent == null) {
            return AbstractIndent.getValueNoInstance(context, fobj, direction);
        }
        return indent.getValue(context, fobj);
    }
View Full Code Here

TOP

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

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.