| org.apache.jmeter.gui.AbstractJMeterGuiComponent org.apache.jmeter.control.gui.AbstractControllerGui
All known Subclasses: org.apache.jmeter.control.gui.IfControllerPanel, org.apache.jmeter.control.gui.LoopControlPanel, org.apache.jmeter.control.gui.ThroughputControllerGui, org.apache.jmeter.control.gui.InterleaveControlGui, org.apache.jmeter.control.gui.SwitchControllerGui, org.apache.jmeter.control.gui.RandomControlGui, org.apache.jmeter.control.gui.IncludeControllerGui, org.apache.jmeter.control.gui.TransactionControllerGui, org.apache.jmeter.control.gui.WhileControllerGui, org.apache.jmeter.control.gui.LogicControllerGui, org.apache.jmeter.control.gui.OnceOnlyControllerGui, org.apache.jmeter.control.gui.RunTimeGui, org.apache.jmeter.control.gui.ForeachControlPanel, org.apache.jmeter.control.gui.ModuleControllerGui,
AbstractControllerGui | abstract public class AbstractControllerGui extends AbstractJMeterGuiComponent (Code) | | This is the base class for JMeter GUI components which manage controllers.
version: $Revision: 493779 $ on $Date: 2007-01-07 17:46:38 +0000 (Sun, 07 Jan 2007) $ |
Method Summary | |
public JPopupMenu | createPopupMenu() 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. | public Collection | getMenuCategories() This is the list of menu categories this gui component will be available
under. |
createPopupMenu | public JPopupMenu createPopupMenu()(Code) | | 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.
This implementation returns menu items appropriate for most controller
components.
a JPopupMenu appropriate for the component. |
getMenuCategories | public Collection getMenuCategories()(Code) | | This is the list of menu categories this gui component will be available
under. This implementation returns
org.apache.jmeter.gui.util.MenuFactory.CONTROLLERS , which is
appropriate for most controller components.
a Collection of Strings, where each element is one of theconstants defined in MenuFactory |
|
|