Examples of PdRole


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

        }
        case RIGHT: {
            return new PdRight(fobj, propertyFullName, attributeValue);
        }
        case ROLE: {
            return new PdRole(fobj, propertyFullName, attributeValue);
        }
        case RULE_STYLE: {
            return new PdRuleStyle(fobj, propertyFullName, attributeValue);
        }
        case RULE_THICKNESS: {
View Full Code Here

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

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The role property.
     */
    public String getRole(final FObj fobj, final FoContext context) {
        final PdRole property = (PdRole) getProperty(FoProperty.ROLE);
        if (property == null) {
            return PdRole.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.