Examples of PdTextDepth


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

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The text-depth property.
     */
    public int traitTextDepth(final FObj fobj, final FoContext context) {
        final PdTextDepth property = (PdTextDepth) getProperty(
                FoProperty.TEXT_DEPTH);
        if (property == null) {
            return PdTextDepth.getValueNoInstance(fobj, context);
        }
        return property.getValue(context, fobj);
    }
View Full Code Here

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

        }
        case TEXT_DECORATION: {
            return new PdTextDecoration(fobj, propertyFullName, attributeValue);
        }
        case TEXT_DEPTH: {
            return new PdTextDepth(fobj, propertyFullName, attributeValue);
        }
        case TEXT_INDENT: {
            return new PdTextIndent(fobj, propertyFullName, attributeValue);
        }
        case TEXT_SHADOW: {
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.