Package org.foray.fotree.fo.prop

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


        case HYPHENATION_KEEP: {
            return new PdHyphenationKeep(fobj, propertyFullName,
                    attributeValue);
        }
        case HYPHENATION_LADDER_COUNT: {
            return new PdHyphenationLadderCount(fobj, propertyFullName,
                    attributeValue);
        }
        case HYPHENATION_PUSH_CHARACTER_COUNT: {
            return new PdHyphenationPushCharacterCount(fobj, propertyFullName,
                    attributeValue);
View Full Code Here


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

TOP

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

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.