Examples of PdFlowMapReference


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

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

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

        }
        case FLOW_MAP_NAME: {
            return new PdFlowMapName(fobj, propertyFullName, attributeValue);
        }
        case FLOW_MAP_REFERENCE: {
            return new PdFlowMapReference(fobj, propertyFullName,
                    attributeValue);
        }
        case FLOW_NAME: {
            return new PdFlowName(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.