Examples of PdAzimuth


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

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The azimuth property.
     */
    public float traitAzimuth(final FObj fobj, final FoContext context) {
        final PdAzimuth property = (PdAzimuth) getProperty(
                FoProperty.AZIMUTH);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdAzimuth.getValueNoInstance(context, fobj);
    }
View Full Code Here

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

        }
        case AUTO_RESTORE: {
            return new PdAutoRestore(fobj, propertyFullName, attributeValue);
        }
        case AZIMUTH: {
            return new PdAzimuth(fobj, propertyFullName, attributeValue);
        }
        case BACKGROUND: {
            return new PdBackground(fobj, propertyFullName, attributeValue);
        }
        case BACKGROUND_ATTACHMENT: {
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.