Examples of PdRegionNameReference


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

        propertyList = new PropertyList(1);
        final RegionNameSpecifier regionNameSpecifier = new RegionNameSpecifier(
                targetList, propertyList);
        targetList.addChild(regionNameSpecifier);
        property = new PdRegionNameReference(regionNameSpecifier,
                FoProperty.REGION_NAME_REFERENCE.toXslFo(), impliedName);
        propertyList.addProperty(regionNameSpecifier, property);
    }
View Full Code Here

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

        }
        case REGION_NAME: {
            return new PdRegionName(fobj, propertyFullName, attributeValue);
        }
        case REGION_NAME_REFERENCE: {
            return new PdRegionNameReference(fobj, propertyFullName,
                    attributeValue);
        }
        case RELATIVE_ALIGN: {
            return new PdRelativeAlign(fobj, propertyFullName, attributeValue);
        }
View Full Code Here

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

     * Returns the region-name-reference property.
     * @return The region-name-reference property, or null if the property is
     * not specified.
     */
    public String getRegionNameReference() {
        final PdRegionNameReference property =
                (PdRegionNameReference) getProperty(
                        FoProperty.REGION_NAME_REFERENCE);
        if (property == null) {
            return null;
        } else {
            return property.getValue();
        }
    }
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.