1 18 19 package org.apache.jmeter.engine.event; 20 21 import org.apache.jmeter.testelement.TestElement; 22 23 27 public class LoopIterationEvent 28 { 29 int iteration; 30 TestElement source; 31 32 public LoopIterationEvent(TestElement source, int iter) 33 { 34 iteration = iter; 35 this.source = source; 36 } 37 38 42 public int getIteration() 43 { 44 return iteration; 45 } 46 47 51 public TestElement getSource() 52 { 53 return source; 54 } 55 56 60 public void setIteration(int iteration) 61 { 62 this.iteration = iteration; 63 } 64 } | Popular Tags |