Examples of PdFlowNameReference


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

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

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

        PropertyList propertyList = new PropertyList(1);
        final FlowNameSpecifier flowNameSpecifier = new FlowNameSpecifier(
                sourceList, propertyList);
        sourceList.addChild(flowNameSpecifier);
        Property property = new PdFlowNameReference(flowNameSpecifier,
                    FoProperty.FLOW_NAME_REFERENCE.toXslFo(), impliedName);
        propertyList.addProperty(flowNameSpecifier, property);

        /* The target part. */
        final FlowTargetList targetList = new FlowTargetList(assignment,
View Full Code Here

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

        }
        case FLOW_NAME: {
            return new PdFlowName(fobj, propertyFullName, attributeValue);
        }
        case FLOW_NAME_REFERENCE: {
            return new PdFlowNameReference(fobj, propertyFullName,
                    attributeValue);
        }
        case FONT: {
            return new PdFont(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.