Examples of PdNumberColumnsSpanned


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

        case NUMBER_COLUMNS_REPEATED: {
            return new PdNumberColumnsRepeated(fobj, propertyFullName,
                    attributeValue);
        }
        case NUMBER_COLUMNS_SPANNED: {
            return new PdNumberColumnsSpanned(fobj, propertyFullName,
                    attributeValue);
        }
        case NUMBER_ROWS_SPANNED: {
            return new PdNumberRowsSpanned(fobj, propertyFullName,
                    attributeValue);
View Full Code Here

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

    /**
     * Returns the number-columns-spanned property.
     * @return The number-columns-spanned property.
     */
    public int getNumberColumnsSpanned() {
        final PdNumberColumnsSpanned property = (PdNumberColumnsSpanned)
                getProperty(FoProperty.NUMBER_COLUMNS_SPANNED);
        if (property == null) {
            return PdNumberColumnsSpanned.getValueNoInstance();
        }
        return property.getValue();
    }
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.