Package org.foray.fotree.fo.prop

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


     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The ends-row property.
     */
    public boolean traitEndsRow(final FObj fobj, final FoContext context) {
        final PdEndsRow property = (PdEndsRow) getProperty(
                FoProperty.ENDS_ROW);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdEndsRow.getValueNoInstance();
    }
View Full Code Here


        }
        case END_INDENT: {
            return new PdEndIndent(fobj, propertyFullName, attributeValue);
        }
        case ENDS_ROW: {
            return new PdEndsRow(fobj, propertyFullName, attributeValue);
        }
        case EXTENT: {
            return new PdExtent(fobj, propertyFullName, attributeValue);
        }
        case EXTERNAL_DESTINATION: {
View Full Code Here

TOP

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

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.