Examples of PdLineHeightShiftAdjustment


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

        }
        case LINE_HEIGHT: {
            return new PdLineHeight(fobj, propertyFullName, attributeValue);
        }
        case LINE_HEIGHT_SHIFT_ADJUSTMENT: {
            return new PdLineHeightShiftAdjustment(fobj, propertyFullName,
                    attributeValue);
        }
        case LINE_STACKING_STRATEGY: {
            return new PdLineStackingStrategy(fobj, propertyFullName,
                    attributeValue);
View Full Code Here

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

     * issues.
     * @return The line-height-shift-adjustment property.
     */
    public FoValue traitLineHeightShiftAdjustment(final FObj fobj,
            final FoContext context) {
        final PdLineHeightShiftAdjustment property =
                (PdLineHeightShiftAdjustment) getProperty(
                FoProperty.LINE_HEIGHT_SHIFT_ADJUSTMENT);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdLineHeightShiftAdjustment.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.