Package org.foray.fotree.fo.prop

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


        case PROVISIONAL_LABEL_SEPARATION: {
            return new PdProvisionalLabelSeparation(fobj, propertyFullName,
                    attributeValue);
        }
        case REF_ID: {
            return new PdRefId(fobj, propertyFullName, attributeValue);
        }
        case REF_INDEX_KEY: {
            return new PdRefIndexKey(fobj, propertyFullName, attributeValue);
        }
        case REFERENCE_ORIENTATION: {
View Full Code Here


     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The ref-id property.
     */
    public String getRefId(final FObj fobj, final FoContext context) {
        final PdRefId property = (PdRefId) getProperty(FoProperty.REF_ID);
        if (property == null) {
            return PdRefId.getValueNoInstance();
        }
        return property.getValue(context, fobj);
    }
View Full Code Here

TOP

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

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.