Examples of PdGroupingSeparator


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

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

        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
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.