Package org.foray.fotree.fo.prop

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


        }
        case TEXT_SHADOW: {
            return new PdTextShadow(fobj, propertyFullName, attributeValue);
        }
        case TEXT_TRANSFORM: {
            return new PdTextTransform(fobj, propertyFullName, attributeValue);
        }
        case TOP: {
            return new PdTop(fobj, propertyFullName, attributeValue);
        }
        case TREAT_AS_WORD_SPACE: {
View Full Code Here


     * issues.
     * @return The text-transform property.
     */
    public FoValue traitTextTransform(final FObj fobj,
            final FoContext context) {
        final PdTextTransform property = (PdTextTransform) getProperty(
                FoProperty.TEXT_TRANSFORM);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdTextTransform.getValueNoInstance(context, fobj);
    }
View Full Code Here

TOP

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

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.