Examples of PdRuleThickness


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

        }
        case RULE_STYLE: {
            return new PdRuleStyle(fobj, propertyFullName, attributeValue);
        }
        case RULE_THICKNESS: {
            return new PdRuleThickness(fobj, propertyFullName, attributeValue);
        }
        case SCALE_OPTION: {
            return new PdScaleOption(fobj, propertyFullName, attributeValue);
        }
        case SCALING: {
View Full Code Here

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

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The rule-thickness property.
     */
    public int getRuleThickness(final FObj fobj, final FoContext context) {
        final PdRuleThickness property = (PdRuleThickness) getProperty(
                FoProperty.RULE_THICKNESS);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdRuleThickness.getValueNoInstance(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.