Examples of PdLeaderLength


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

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

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

     * @param subProperty The length-range specifier.
     * @return The leader-length property.
     */
    private int getLeaderLength(final FObj fobj, final FoContext context,
            final LengthRange subProperty) {
        final PdLeaderLength property = (PdLeaderLength) getProperty(
                FoProperty.LEADER_LENGTH);
        if (property != null) {
            return property.getValue(context, subProperty, fobj);
        }
        return PdLeaderLength.getValueNoInstance(subProperty, fobj, context);
    }
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.