Examples of PdTableLayout


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

    /**
     * Returns the table-layout property.
     * @return The table-layout property.
     */
    public FoValue getTableLayout() {
        final PdTableLayout property = (PdTableLayout) getProperty(
                FoProperty.TABLE_LAYOUT);
        if (property == null) {
            return PdTableLayout.getValueNoInstance();
        }
        return property.getValue();
    }
View Full Code Here

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

        }
        case SWITCH_TO: {
            return new PdSwitchTo(fobj, propertyFullName, attributeValue);
        }
        case TABLE_LAYOUT: {
            return new PdTableLayout(fobj, propertyFullName, attributeValue);
        }
        case TABLE_OMIT_FOOTER_AT_BREAK: {
            return new PdTableOmitFooterAtBreak(fobj, propertyFullName,
                    attributeValue);
        }
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.