Examples of PdHyphenationRemainCharacterCount


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

        case HYPHENATION_PUSH_CHARACTER_COUNT: {
            return new PdHyphenationPushCharacterCount(fobj, propertyFullName,
                    attributeValue);
        }
        case HYPHENATION_REMAIN_CHARACTER_COUNT: {
            return new PdHyphenationRemainCharacterCount(fobj, propertyFullName,
                    attributeValue);
        }
        case ID: {
            return new PdId(fobj, propertyFullName, attributeValue);
        }
View Full Code Here

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

     * issues.
     * @return The hyphenation-remain-character-count property.
     */
    public int getHyphenationRemainCharacterCount(final FObj fobj,
            final FoContext context) {
        final PdHyphenationRemainCharacterCount property =
                (PdHyphenationRemainCharacterCount) getProperty(
                FoProperty.HYPHENATION_REMAIN_CHARACTER_COUNT);
        if (property == null) {
            return PdHyphenationRemainCharacterCount.traitValueNoInstance(
                    context, fobj);
        }
        return property.traitValue(context, fobj);
    }
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.