Package org.foray.fotree.fo.prop

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


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


        case ALLOWED_WIDTH_SCALE: {
            return new PdAllowedWidthScale(fobj, propertyFullName,
                    attributeValue);
        }
        case AUTO_RESTORE: {
            return new PdAutoRestore(fobj, propertyFullName, attributeValue);
        }
        case AZIMUTH: {
            return new PdAzimuth(fobj, propertyFullName, attributeValue);
        }
        case BACKGROUND: {
View Full Code Here

TOP

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

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.