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

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


    }

    protected void processSpecificAttributes(Element element, Activity activity) throws DeploymentException {
        String forDurationExpression = element.valueOf("@for");
        String untilDeadlineExpression = element.valueOf("@until");
        Wait wait = (Wait) activity;
        if (forDurationExpression != null) {
            wait.setDuration(true);
            wait.setTime(forDurationExpression);
        } else if (untilDeadlineExpression != null) {
            wait.setDuration(false);
            wait.setTime(untilDeadlineExpression);
        }
    }
View Full Code Here

TOP

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

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.