Package org.apache.jmeter.control.gui

Examples of org.apache.jmeter.control.gui.WorkBenchGui


      fixTestElement(item);
      try {
        gui = (JMeterGUIComponent)Class.forName((String)item.getProperty(TestElement.GUI_CLASS)).newInstance();
      } catch(Exception e) {
        log.warn("Couldn't get gui for "+item,e);
        gui = new WorkBenchGui();
      }
      gui.configure(item);
      return gui;
  }
View Full Code Here

TOP

Related Classes of org.apache.jmeter.control.gui.WorkBenchGui

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.