Package org.foray.fotree.fo.prop

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


    /**
     * Returns the grouping-separator property.
     * @return The grouping-separator property.
     */
    public char getGroupingSeparator() {
        final PdGroupingSeparator property = (PdGroupingSeparator) getProperty(
                FoProperty.GROUPING_SEPARATOR);
        if (property != null) {
            return property.getValue();
        }
        return PdGroupingSeparator.getValueNoInstance();
    }
View Full Code Here


        case GLYPH_ORIENTATION_VERTICAL: {
            return new PdGlyphOrientationVertical(fobj, propertyFullName,
                    attributeValue);
        }
        case GROUPING_SEPARATOR: {
            return new PdGroupingSeparator(fobj, propertyFullName,
                    attributeValue);
        }
        case GROUPING_SIZE: {
            return new PdGroupingSize(fobj, propertyFullName, attributeValue);
        }
View Full Code Here

TOP

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

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.