Package org.foray.fotree.fo.prop

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


     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The hyphenate property.
     */
    public boolean getHyphenate(final FObj fobj, final FoContext context) {
        final PdHyphenate property = (PdHyphenate) getProperty(
                FoProperty.HYPHENATE);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdHyphenate.getValueNoInstance(context, fobj);
    }
View Full Code Here


        }
        case HEIGHT: {
            return new PdHeight(fobj, propertyFullName, attributeValue);
        }
        case HYPHENATE: {
            return new PdHyphenate(fobj, propertyFullName, attributeValue);
        }
        case HYPHENATION_CHARACTER: {
            return new PdHyphenationCharacter(fobj, propertyFullName,
                    attributeValue);
        }
View Full Code Here

TOP

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

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.