Examples of PdLineStackingStrategy


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

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

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

     * issues.
     * @return The line-stacking-strategy property.
     */
    public FoValue traitLineStackingStrategy(final FObj fobj,
            final FoContext context) {
        final PdLineStackingStrategy property =
                (PdLineStackingStrategy) getProperty(
                FoProperty.LINE_STACKING_STRATEGY);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdLineStackingStrategy.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.