Package org.foray.fotree.fo.prop

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


        case REFERENCE_ORIENTATION: {
            return new PdReferenceOrientation(fobj, propertyFullName,
                    attributeValue);
        }
        case REGION_NAME: {
            return new PdRegionName(fobj, propertyFullName, attributeValue);
        }
        case REGION_NAME_REFERENCE: {
            return new PdRegionNameReference(fobj, propertyFullName,
                    attributeValue);
        }
View Full Code Here


     * Returns the region-name property.
     * @param fobj The FObj to which the property belongs.
     * @return The region-name property.
     */
    public String getRegionName(final FObj fobj) {
        final PdRegionName property = (PdRegionName) getProperty(
                FoProperty.REGION_NAME);
        if (property != null) {
            return property.getValue();
        }
        if (fobj instanceof Region) {
            return ((Region) fobj).getDefaultRegionName();
        }
        return null;
View Full Code Here

TOP

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

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.