Package org.tod.meta.steps

Examples of org.tod.meta.steps.TestLoopStep


                targetScope = lastScope;
            }*/
           
            if (targetScope != null) {
                // Generate the conditional step.
                TestLoopStep s = new TestLoopStep();
                s.setType(StepType.TEST_LOOP);
                s.setConditional(targetScope);
                s.setWasTrue(loopTrue);
                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.TestLoopStep

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.