Package org.foray.fotree.fo.prop

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


        case RENDERING_INTENT: {
            return new PdRenderingIntent(fobj, propertyFullName,
                    attributeValue);
        }
        case RETRIEVE_BOUNDARY: {
            return new PdRetrieveBoundary(fobj, propertyFullName,
                    attributeValue);
        }
        case RETRIEVE_BOUNDARY_WITHIN_TABLE: {
            return new PdRetrieveBoundaryWithinTable(fobj, propertyFullName,
                    attributeValue);
View Full Code Here


    /**
     * Returns the retrieve-boundary property.
     * @return Teh retrieve-boundary property.
     */
    public FoValue getRetrieveBoundary() {
        final PdRetrieveBoundary property = (PdRetrieveBoundary) getProperty(
                FoProperty.RETRIEVE_BOUNDARY);
        if (property != null) {
            return property.getValue();
        }
        return PdRetrieveBoundary.getValueNoInstance();
    }
View Full Code Here

TOP

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

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.