1 17 package org.apache.jmeter.control.gui; 18 19 import org.apache.jmeter.control.RandomOrderController; 20 import org.apache.jmeter.testelement.TestElement; 21 22 27 public class RandomOrderControllerGui extends LogicControllerGui 28 { 29 30 public String getLabelResource() 31 { 32 return "random_order_control_title"; 33 } 34 35 38 public TestElement createTestElement() 39 { 40 RandomOrderController ic = new RandomOrderController(); 41 modifyTestElement(ic); 42 return ic; 43 } 44 45 48 public void modifyTestElement(TestElement ic) 49 { 50 configureTestElement(ic); 51 } 52 53 } 54 | Popular Tags |