Package org.foray.fotree.fo.prop

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


        }
        case OVERFLOW: {
            return new PdOverflow(fobj, propertyFullName, attributeValue);
        }
        case PADDING: {
            return new PdPadding(fobj, propertyFullName, attributeValue);
        }
        case PADDING_AFTER: {
            return new PdPaddingAfter(fobj, propertyFullName, attributeValue);
        }
        case PADDING_BEFORE: {
View Full Code Here


            return explicitPadding.getValue(context, fobj);
        }

        /* Neither the explicit absolute nor explicit relative directions are
         * set. Check the "padding" shorthand. */
        final PdPadding padding = (PdPadding) getProperty(FoProperty.PADDING);
        if (padding != null) {
            return padding.getValue(context, absoluteDirection, fobj);
        }

        /* Return the initial value. */
        return AbstractPadding.getValueNoInstance();
    }
View Full Code Here

TOP

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

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.