Package org.foray.fotree.fo.prop

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


     * issues.
     * @return The border-after-precedence property.
     */
    public int getBorderAfterPrecedence(final FObj fobj,
            final FoContext context) {
        final PdBorderAfterPrecedence property = (PdBorderAfterPrecedence)
                getProperty(FoProperty.BORDER_AFTER_PRECEDENCE);
        if (property == null) {
            return PdBorderAfterPrecedence.getValueNoInstance(fobj);
        }
        return property.getValue(context, fobj);
    }
View Full Code Here


        case BORDER_AFTER_COLOR: {
            return new PdBorderAfterColor(fobj, propertyFullName,
                    attributeValue);
        }
        case BORDER_AFTER_PRECEDENCE: {
            return new PdBorderAfterPrecedence(fobj, propertyFullName,
                    attributeValue);
        }
        case BORDER_AFTER_STYLE: {
            return new PdBorderAfterStyle(fobj, propertyFullName,
                    attributeValue);
View Full Code Here

TOP

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

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.