Examples of PdNumberRowsSpanned


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

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

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

    /**
     * Returns the number-rows-spanned property.
     * @return The number-rows-spanned property.
     */
    public int getNumberRowsSpanned() {
        final PdNumberRowsSpanned property = (PdNumberRowsSpanned)
                getProperty(FoProperty.NUMBER_ROWS_SPANNED);
        if (property == null) {
            return PdNumberRowsSpanned.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.