| org.apache.jmeter.gui.AbstractJMeterGuiComponent org.apache.jmeter.config.gui.AbstractConfigGui
All known Subclasses: org.apache.jmeter.protocol.ldap.config.gui.LdapExtConfigGui, org.apache.jmeter.protocol.ftp.config.gui.FtpConfigGui, org.apache.jmeter.config.gui.SimpleConfigGui, org.apache.jmeter.protocol.http.gui.AuthPanel, org.apache.jmeter.protocol.java.config.gui.JavaConfigGui, org.apache.jmeter.protocol.ldap.config.gui.LdapConfigGui, org.apache.jmeter.visualizers.PropertyControlGui, org.apache.jmeter.protocol.http.gui.HeaderPanel, org.apache.jmeter.protocol.http.gui.CookiePanel, org.apache.jmeter.protocol.tcp.config.gui.TCPConfigGui, org.apache.jmeter.config.gui.LoginConfigGui, org.apache.jmeter.protocol.http.config.gui.HttpDefaultsGui, org.apache.jmeter.config.gui.ArgumentsPanel, org.apache.jmeter.protocol.ldap.config.gui.LDAPArgumentsPanel,
AbstractConfigGui | abstract public class AbstractConfigGui extends AbstractJMeterGuiComponent (Code) | | This is the base class for JMeter GUI components which provide configuration
for some other component.
|
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 configuration
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.CONFIG_ELEMENTS , which is
appropriate for most configuration components.
a Collection of Strings, where each element is one of theconstants defined in MenuFactory |
|
|