Examples of PdRefId


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

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

     * @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
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.