Package org.foray.fotree.fo.prop

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


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


     * issues.
     * @return The hyphenation-keep property.
     */
    public FoValue traitHyphenationKeep(final FObj fobj,
            final FoContext context) {
        final PdHyphenationKeep property = (PdHyphenationKeep) getProperty(
                FoProperty.HYPHENATION_KEEP);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdHyphenationKeep.getValueNoInstance(context, fobj);
    }
View Full Code Here

TOP

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

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.