Package org.foray.fotree.fo.prop

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


        }
        case WRAP_OPTION: {
            return new PdWrapOption(fobj, propertyFullName, attributeValue);
        }
        case WRITING_MODE: {
            return new PdWritingMode(fobj, propertyFullName, attributeValue);
        }
        case Z_INDEX: {
            return new PdZIndex(fobj, propertyFullName, attributeValue);
        }
        default: {
View Full Code Here


     * issues.
     * @return The writing-mode property.
     */
    public DtWritingMode getWritingMode(final FObj fobj,
            final FoContext context) {
        final PdWritingMode property = (PdWritingMode) getProperty(
                FoProperty.WRITING_MODE);
        if (property == null) {
            return PdWritingMode.getValueNoInstance(context, fobj);
        }
        return property.getValue();
    }
View Full Code Here

TOP

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

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.