Examples of PdExtent


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

     * Returns the extent property.
     * @param fobj The FObj to which the property belongs.
     * @return The extent property.
     */
    public int getExtent(final FObj fobj) {
        final PdExtent property = (PdExtent) getProperty(FoProperty.EXTENT);
        if (property != null) {
            return property.getValue(fobj);
        }
        return PdExtent.getValueNoInstance();
    }
View Full Code Here

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

        }
        case ENDS_ROW: {
            return new PdEndsRow(fobj, propertyFullName, attributeValue);
        }
        case EXTENT: {
            return new PdExtent(fobj, propertyFullName, attributeValue);
        }
        case EXTERNAL_DESTINATION: {
            return new PdExternalDestination(fobj, propertyFullName,
                    attributeValue);
        }
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.