Package org.tod.meta.steps

Examples of org.tod.meta.steps.TestConditionalStep


               
                if (targetScope.getType() == Scope.REPEAT) {
                    return null;
                }
                // Generate the conditional step.
                TestConditionalStep s = new TestConditionalStep();
                s.setType(StepType.TEST_CONDITIONAL);
                s.setConditional(targetScope);
                s.setWasTrue(conditionalTrue);
                s.setMethodInfo(session.getClassInformationProvider().getMethodInfo(event.getOperationBehavior()));
                s.setLineNumber(newLine);
                s.setForward(forward);
                return s;
            }
        }
       
        return null;
View Full Code Here

TOP

Related Classes of org.tod.meta.steps.TestConditionalStep

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.