Class AbstractThreadGroupGui

    • Constructor Detail

      • AbstractThreadGroupGui

        public AbstractThreadGroupGui()
    • Method Detail

      • getMenuCategories

        public Collection<String> getMenuCategories()
        Description copied from interface: JMeterGUIComponent
        This is the list of add menu categories this gui component will be available under. For instance, if this represents a Controller, then the MenuFactory.CONTROLLERS category should be in the returned collection. When a user right-clicks on a tree element and looks through the "add" menu, which category your GUI component shows up in is determined by which categories are returned by this method. Most GUI's belong to only one category, but it is possible for a component to exist in multiple categories.
        Returns:
        a Collection of Strings, where each element is one of the constants defined in MenuFactory
        See Also:
        MenuFactory
      • createPopupMenu

        public JPopupMenu createPopupMenu()
        Description copied from interface: JMeterGUIComponent
        When a user right-clicks on the component in the test tree, or selects the edit menu when the component is selected, the component will be asked to return a JPopupMenu that provides all the options available to the user from this component.
        Returns:
        a JPopupMenu appropriate for the component.
      • 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 AbstractJMeterGuiComponent
      • configure

        public void configure​(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 AbstractJMeterGuiComponent
        Parameters:
        tg - the TestElement to configure