Examples of PdSwitchTo


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

    /**
     * Returns the switch-to property.
     * @return The switch-to property.
     */
    public FoValue traitSwitchTo() {
        final PdSwitchTo property = (PdSwitchTo) getProperty(
                FoProperty.SWITCH_TO);
        if (property != null) {
            return property.getValue();
        }
        return PdSwitchTo.getValueNoInstance();
    }
View Full Code Here

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

    /**
     * Returns the switch-to names.
     * @return The switch-to names.
     */
    public String[] traitSwitchToNames() {
        final PdSwitchTo property = (PdSwitchTo) getProperty(
                FoProperty.SWITCH_TO);
        return property.getValueNames();
    }
View Full Code Here

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

        case SUPPRESS_AT_LINE_BREAK: {
            return new PdSuppressAtLineBreak(fobj, propertyFullName,
                    attributeValue);
        }
        case SWITCH_TO: {
            return new PdSwitchTo(fobj, propertyFullName, attributeValue);
        }
        case TABLE_LAYOUT: {
            return new PdTableLayout(fobj, propertyFullName, attributeValue);
        }
        case TABLE_OMIT_FOOTER_AT_BREAK: {
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.