Class ThreadGroupGui

All Implemented Interfaces:
ItemListener, ImageObserver, MenuContainer, Serializable, EventListener, Accessible, ClearGui, JMeterGUIComponent, Printable
Direct Known Subclasses:
PostThreadGroupGui, SetupThreadGroupGui

public class ThreadGroupGui extends AbstractThreadGroupGui implements ItemListener
See Also:
  • Constructor Details

    • ThreadGroupGui

      public ThreadGroupGui()
    • ThreadGroupGui

      public ThreadGroupGui(boolean showDelayedStart)
  • Method Details

    • makeTestElement

      public org.apache.jmeter.testelement.TestElement makeTestElement()
      Description copied from interface: JMeterGUIComponent
      Creates the test element represented by the GUI component.
      Specified by:
      makeTestElement in interface JMeterGUIComponent
      Returns:
      a new TestElement
    • assignDefaultValues

      public void assignDefaultValues(org.apache.jmeter.testelement.TestElement element)
      Description copied from interface: JMeterGUIComponent
      Configures default values for element after its creation. Plugin authors should call this once in their JMeterGUIComponent.createTestElement() implementation.
      Specified by:
      assignDefaultValues in interface JMeterGUIComponent
      Overrides:
      assignDefaultValues in class AbstractThreadGroupGui
      Parameters:
      element - test element to configure
    • modifyTestElement

      public void modifyTestElement(org.apache.jmeter.testelement.TestElement tg)
      Modifies a given TestElement to mirror the data in the gui components.
      Specified by:
      modifyTestElement in interface JMeterGUIComponent
      Overrides:
      modifyTestElement in class AbstractThreadGroupGui
      Parameters:
      tg - the TestElement to modify
      See Also:
    • configure

      public void configure(org.apache.jmeter.testelement.TestElement tg)
      Description copied from class: AbstractJMeterGuiComponent
      A newly created gui component can be initialized with the contents of a Test Element object by calling this method. The component is responsible for querying the Test Element object for the relevant information to display in its GUI.

      AbstractJMeterGuiComponent provides a partial implementation of this method, setting the name of the component and its enabled status. Subclasses should override this method, performing their own configuration as needed, but also calling this super-implementation.

      Specified by:
      configure in interface JMeterGUIComponent
      Overrides:
      configure in class AbstractThreadGroupGui
      Parameters:
      tg - the TestElement to configure
    • itemStateChanged

      public void itemStateChanged(ItemEvent ie)
      Specified by:
      itemStateChanged in interface ItemListener
    • getLabelResource

      public String getLabelResource()
      Description copied from interface: JMeterGUIComponent
      Get the component's resource name, which getStaticLabel uses to derive the component's label in the local language. The resource name is fixed, and does not vary with the selected language.

      Normally this method should be overridden in preference to overriding getStaticLabel(). However where the resource name is not available or required, getStaticLabel() may be overridden instead.

      Specified by:
      getLabelResource in interface JMeterGUIComponent
      Returns:
      the resource name
    • clearGui

      public void clearGui()
      Description copied from class: AbstractJMeterGuiComponent
      Provides a default implementation that resets the name field to the value of getStaticLabel(), reset comment and sets enabled to true. Your GUI may need more things cleared, in which case you should override, clear the extra fields, and still call super.clearGui().
      Specified by:
      clearGui in interface ClearGui
      Overrides:
      clearGui in class AbstractThreadGroupGui