Package org.foray.fotree.fo.prop

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


     * issues.
     * @return The starting-state property.
     */
    public FoValue traitStartingState(final FObj fobj,
            final FoContext context) {
        final PdStartingState property = (PdStartingState) getProperty(
                FoProperty.STARTING_STATE);
        if (property != null) {
            return property.getValue(context, fobj);
        }
        return PdStartingState.getValueNoInstance();
    }
View Full Code Here


        }
        case START_INDENT: {
            return new PdStartIndent(fobj, propertyFullName, attributeValue);
        }
        case STARTING_STATE: {
            return new PdStartingState(fobj, propertyFullName, attributeValue);
        }
        case STARTS_ROW: {
            return new PdStartsRow(fobj, propertyFullName, attributeValue);
        }
        case STRESS: {
View Full Code Here

TOP

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

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.