Examples of PdLinefeedTreatment


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

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

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

     * issues.
     * @return The linefeed-treatment property.
     */
    public FoValue traitLinefeedTreatment(final FObj fobj,
            final FoContext context) {
        final PdLinefeedTreatment property = (PdLinefeedTreatment) getProperty(
                FoProperty.LINEFEED_TREATMENT);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        // Try the shorthand
        final PdWhiteSpace whiteSpace = (PdWhiteSpace) getProperty(
                FoProperty.WHITE_SPACE);
        if (whiteSpace != null) {
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.