Examples of PdBorderCollapse


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

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The border-collapse property.
     */
    public FoValue getBorderCollapse(final FObj fobj, final FoContext context) {
        final PdBorderCollapse property = (PdBorderCollapse) getProperty(
                FoProperty.BORDER_COLLAPSE);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdBorderCollapse.getValueNoInstance(context, fobj);
    }
View Full Code Here

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

        case BORDER_BOTTOM_WIDTH: {
            return new PdBorderBottomWidth(fobj, propertyFullName,
                    attributeValue);
        }
        case BORDER_COLLAPSE: {
            return new PdBorderCollapse(fobj, propertyFullName, attributeValue);
        }
        case BORDER_COLOR: {
            return new PdBorderColor(fobj, propertyFullName, attributeValue);
        }
        case BORDER_END_COLOR: {
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.