Package org.foray.fotree.fo.prop

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


     * issues.
     * @return The suppress-at-line-break property.
     */
    public FoValue traitSuppressAtLineBreak(final FObj fobj,
            final FoContext context) {
        final PdSuppressAtLineBreak property =
                (PdSuppressAtLineBreak) getProperty(
                        FoProperty.SUPPRESS_AT_LINE_BREAK);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdSuppressAtLineBreak.getValueNoInstance();
    }
View Full Code Here


        }
        case STRESS: {
            return new PdStress(fobj, propertyFullName, attributeValue);
        }
        case SUPPRESS_AT_LINE_BREAK: {
            return new PdSuppressAtLineBreak(fobj, propertyFullName,
                    attributeValue);
        }
        case SWITCH_TO: {
            return new PdSwitchTo(fobj, propertyFullName, attributeValue);
        }
View Full Code Here

TOP

Related Classes of org.foray.fotree.fo.prop.PdSuppressAtLineBreak

Copyright © 2018 www.massapicom. 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.