| org.apache.jmeter.gui.AbstractJMeterGuiComponent org.apache.jmeter.assertions.gui.AbstractAssertionGui
All known Subclasses: org.apache.jmeter.assertions.gui.SizeAssertionGui, org.apache.jmeter.assertions.gui.AssertionGui, org.apache.jmeter.assertions.gui.HTMLAssertionGui, org.apache.jmeter.assertions.gui.BeanShellAssertionGui, org.apache.jmeter.assertions.gui.XMLAssertionGui, org.apache.jmeter.assertions.gui.XMLSchemaAssertionGUI, org.apache.jmeter.assertions.gui.DurationAssertionGui, org.apache.jmeter.assertions.gui.MD5HexAssertionGUI, org.apache.jmeter.assertions.gui.XPathAssertionGui,
AbstractAssertionGui | abstract public class AbstractAssertionGui extends AbstractJMeterGuiComponent (Code) | | This is the base class for JMeter GUI components which manage assertions.
author: Michael Stover version: $Revision: 493779 $ |
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 assertion
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.ASSERTIONS , which is
appropriate for most assertion components.
a Collection of Strings, where each element is one of theconstants defined in MenuFactory |
|
|