Package org.foray.fotree.fo.prop

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


     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The display-align property.
     */
    public FoValue getDisplayAlign(final FObj fobj, final FoContext context) {
        final PdDisplayAlign property = (PdDisplayAlign) getProperty(
                FoProperty.DISPLAY_ALIGN);
        if (property == null) {
            return PdDisplayAlign.traitValueNoInstance();
        }
        return property.traitValue(context, fobj);
    }
View Full Code Here


        }
        case DIRECTION: {
            return new PdDirection(fobj, propertyFullName, attributeValue);
        }
        case DISPLAY_ALIGN: {
            return new PdDisplayAlign(fobj, propertyFullName, attributeValue);
        }
        case DOMINANT_BASELINE: {
            return new PdDominantBaseline(fobj, propertyFullName,
                    attributeValue);
        }
View Full Code Here

TOP

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

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.