Package org.uengine.smcp.twister.engine.priv.core.definition

Examples of org.uengine.smcp.twister.engine.priv.core.definition.While


    protected Class getActivityClass() {
        return While.class;
    }

    protected void processSpecificAttributes(Element element, Activity activity) {
        While awhile = (While) activity;
        Attribute condition = element.attribute("condition");
        if (condition != null) {
            log.debug("condition=" + condition.getValue());
            awhile.setCondition(condition.getValue());
        }
    }
View Full Code Here

TOP

Related Classes of org.uengine.smcp.twister.engine.priv.core.definition.While

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.