Package org.foray.fotree.fo.prop

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


     * Returns the flow-map-name property.
     * @return The flow-map-name property, or null if the property is not
     * specified.
     */
    public String getFlowMapName() {
        final PdFlowMapName property = (PdFlowMapName) getProperty(
                FoProperty.FLOW_MAP_NAME);
        if (property == null) {
            return null;
        } else {
            return property.getValue();
        }
    }
View Full Code Here


        case FLOAT: {
            return new org.foray.fotree.fo.prop.PdFloat(fobj, propertyFullName,
                    attributeValue);
        }
        case FLOW_MAP_NAME: {
            return new PdFlowMapName(fobj, propertyFullName, attributeValue);
        }
        case FLOW_MAP_REFERENCE: {
            return new PdFlowMapReference(fobj, propertyFullName,
                    attributeValue);
        }
View Full Code Here

TOP

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

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.