Examples of PdLeaderPattern


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

        }
        case LEADER_LENGTH: {
            return new PdLeaderLength(fobj, propertyFullName, attributeValue);
        }
        case LEADER_PATTERN: {
            return new PdLeaderPattern(fobj, propertyFullName, attributeValue);
        }
        case LEADER_PATTERN_WIDTH: {
            return new PdLeaderPatternWidth(fobj, propertyFullName,
                    attributeValue);
        }
View Full Code Here

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

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The leader-pattern property.
     */
    public FoValue getLeaderPattern(final FObj fobj, final FoContext context) {
        final PdLeaderPattern property = (PdLeaderPattern) getProperty(
                FoProperty.LEADER_PATTERN);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdLeaderPattern.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.