Examples of PdElevation


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

     * @param context An object that knows how to resolve FO Tree context
     * issues.
     * @return The elevation property.
     */
    public float traitElevation(final FObj fobj, final FoContext context) {
        final PdElevation property = (PdElevation) getProperty(
                FoProperty.ELEVATION);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdElevation.getValueNoInstance(context, fobj);
    }
View Full Code Here

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

        case DOMINANT_BASELINE: {
            return new PdDominantBaseline(fobj, propertyFullName,
                    attributeValue);
        }
        case ELEVATION: {
            return new PdElevation(fobj, propertyFullName, attributeValue);
        }
        case EMPTY_CELLS: {
            return new PdEmptyCells(fobj, propertyFullName, attributeValue);
        }
        case END_INDENT: {
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.