use of org.apache.jmeter.control.gui.LoopControlPanel in project jmeter by apache.
the class ThreadGroupGui method createControllerPanel.
private JPanel createControllerPanel() {
loopPanel = new LoopControlPanel(false);
LoopController looper = (LoopController) loopPanel.createTestElement();
looper.setLoops(1);
loopPanel.configure(looper);
return loopPanel;
}
Aggregations