Package org.foray.fotree.fo.prop

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


        if (abstractBorderColor != null) {
            return abstractBorderColor.getValue(direction, fobj, context);
        }

        /* Now try the low-level shorthand, that is, "border-color". */
        final PdBorderColor borderColor = (PdBorderColor) getProperty(
                FoProperty.BORDER_COLOR);
        if (borderColor != null) {
            return borderColor.getValue(direction, fobj, context);
        }

        /* Now try the high-level shorthand, that is, "border". */
        final AbstractBorder border = (AbstractBorder) getProperty(
                FoProperty.BORDER);
View Full Code Here


        }
        case BORDER_COLLAPSE: {
            return new PdBorderCollapse(fobj, propertyFullName, attributeValue);
        }
        case BORDER_COLOR: {
            return new PdBorderColor(fobj, propertyFullName, attributeValue);
        }
        case BORDER_END_COLOR: {
            return new PdBorderEndColor(fobj, propertyFullName, attributeValue);
        }
        case BORDER_END_PRECEDENCE: {
View Full Code Here

TOP

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

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.