Package org.foray.fotree.fo.prop

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


     * issues.
     * @return The table-omit-footer-at-break property.
     */
    public boolean getTableOmitFooterAtBreak(final FObj fobj,
            final FoContext context) {
        final PdTableOmitFooterAtBreak property = (PdTableOmitFooterAtBreak)
                getProperty(FoProperty.TABLE_OMIT_FOOTER_AT_BREAK);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdTableOmitFooterAtBreak.getValueNoInstance();
    }
View Full Code Here


        }
        case TABLE_LAYOUT: {
            return new PdTableLayout(fobj, propertyFullName, attributeValue);
        }
        case TABLE_OMIT_FOOTER_AT_BREAK: {
            return new PdTableOmitFooterAtBreak(fobj, propertyFullName,
                    attributeValue);
        }
        case TABLE_OMIT_HEADER_AT_BREAK: {
            return new PdTableOmitHeaderAtBreak(fobj, propertyFullName,
                    attributeValue);
View Full Code Here

TOP

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

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.