Package org.foray.fotree.fo.prop

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


     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The empty-cells property.
     */
    public FoValue traitEmptyCells(final FObj fobj, final FoContext context) {
        final PdEmptyCells property = (PdEmptyCells) getProperty(
                FoProperty.EMPTY_CELLS);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdEmptyCells.getValueNoInstance(context, fobj);
    }
View Full Code Here


        }
        case ELEVATION: {
            return new PdElevation(fobj, propertyFullName, attributeValue);
        }
        case EMPTY_CELLS: {
            return new PdEmptyCells(fobj, propertyFullName, attributeValue);
        }
        case END_INDENT: {
            return new PdEndIndent(fobj, propertyFullName, attributeValue);
        }
        case ENDS_ROW: {
View Full Code Here

TOP

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

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.