| org.apache.jmeter.gui.AbstractJMeterGuiComponent org.apache.jmeter.samplers.gui.AbstractSamplerGui
All known Subclasses: org.apache.jmeter.protocol.mail.sampler.gui.MailReaderSamplerGui, org.apache.jmeter.sampler.gui.TestActionGui, org.apache.jmeter.protocol.java.control.gui.JUnitTestSamplerGui, org.apache.jmeter.protocol.ldap.control.gui.LdapTestSamplerGui, org.apache.jmeter.protocol.jms.control.gui.JMSPublisherGui, org.apache.jmeter.protocol.tcp.control.gui.TCPSamplerGui, org.apache.jmeter.protocol.http.control.gui.SoapSamplerGui, org.apache.jmeter.protocol.http.control.gui.WebServiceSamplerGui, org.apache.jmeter.protocol.jms.control.gui.JMSSubscriberGui, org.apache.jmeter.protocol.java.control.gui.BeanShellSamplerGui, org.apache.jmeter.protocol.java.control.gui.JavaTestSamplerGui, org.apache.jmeter.protocol.http.control.gui.HttpTestSampleGui, org.apache.jmeter.protocol.ftp.control.gui.FtpTestSamplerGui, org.apache.jmeter.examples.sampler.gui.ExampleSamplerGui, org.apache.jmeter.protocol.java.control.gui.BSFSamplerGui, org.apache.jmeter.protocol.jms.control.gui.JMSConfigGui, org.apache.jmeter.protocol.ldap.control.gui.LdapExtTestSamplerGui,
AbstractSamplerGui | abstract public class AbstractSamplerGui extends AbstractJMeterGuiComponent (Code) | | This is the base class for JMeter GUI components which manage samplers.
|
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 sampler
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.SAMPLERS , which is
appropriate for most sampler components.
a Collection of Strings, where each element is one of theconstants defined in MenuFactory |
|
|