Package org.foray.fotree.fo.prop

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


     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The column-gap property.
     */
    public int getColumnGap(final FObj fobj, final FoContext context) {
        final PdColumnGap property = (PdColumnGap) getProperty(
                FoProperty.COLUMN_GAP);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdColumnGap.getValueNoInstance();
    }
View Full Code Here


        }
        case COLUMN_COUNT: {
            return new PdColumnCount(fobj, propertyFullName, attributeValue);
        }
        case COLUMN_GAP: {
            return new PdColumnGap(fobj, propertyFullName, attributeValue);
        }
        case COLUMN_NUMBER: {
            return new PdColumnNumber(fobj, propertyFullName, attributeValue);
        }
        case COLUMN_WIDTH: {
View Full Code Here

TOP

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

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.