/**
* This is the base class for JMeter GUI components which manage timers.
*
* @author Michael Stover
* @version $Revision: 493779 $
*/
/**
* This is the base class for JMeter GUI components which manage samplers.
*
*/
/**
*
* @version $Revision: 493779 $ $Date: 2007-01-07 17:46:38 +0000 (Sun, 07 Jan 2007) $
*/
/**
* @version $Revision: 493779 $
*/
/**
* 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) $
*/
/**
* This is the base class for JMeter GUI components which provide configuration
* for some other component.
*
*/
/**
* This is the base class for JMeter GUI components which manage assertions.
*
* @author Michael Stover
* @version $Revision: 493779 $
*/
public abstract class [[#variablee0d46e0]]extends AbstractJMeterGuiComponent {
/**
* 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.
* <p>
* This implementation returns menu items appropriate for most timer
* components.
*
* @return a JPopupMenu appropriate for the component.
*/
/**
* 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.
* <p>
* This implementation returns menu items appropriate for most sampler
* components.
*
* @return a JPopupMenu appropriate for the component.
*/
/**
* 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.
* <p>
* This implementation returns menu items appropriate for most controller
* components.
*
* @return a JPopupMenu appropriate for the component.
*/
/**
* 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.
* <p>
* This implementation returns menu items appropriate for most configuration
* components.
*
* @return a JPopupMenu appropriate for the component.
*/
/**
* 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.
* <p>
* This implementation returns menu items appropriate for most assertion
* components.
*
* @return a JPopupMenu appropriate for the component.
*/
public JPopupMenu createPopupMenu() {
return MenuFactory. [[#variablee0d4680]]();
}
/**
* This is the list of menu categories this gui component will be available
* under. This implementation returns
* {@link org.apache.jmeter.gui.util.MenuFactory#TIMERS}, which is
* appropriate for most timer components.
*
* @return a Collection of Strings, where each element is one of the
* constants defined in MenuFactory
*/
/**
* This is the list of menu categories this gui component will be available
* under. This implementation returns
* {@link org.apache.jmeter.gui.util.MenuFactory#SAMPLERS}, which is
* appropriate for most sampler components.
*
* @return a Collection of Strings, where each element is one of the
* constants defined in MenuFactory
*/
/**
* This is the list of menu categories this gui component will be available
* under. This implementation returns
* {@link org.apache.jmeter.gui.util.MenuFactory#CONTROLLERS}, which is
* appropriate for most controller components.
*
* @return a Collection of Strings, where each element is one of the
* constants defined in MenuFactory
*/
/**
* This is the list of menu categories this gui component will be available
* under. This implementation returns
* {@link org.apache.jmeter.gui.util.MenuFactory#CONFIG_ELEMENTS}, which is
* appropriate for most configuration components.
*
* @return a Collection of Strings, where each element is one of the
* constants defined in MenuFactory
*/
/**
* This is the list of menu categories this gui component will be available
* under. This implementation returns
* {@link org.apache.jmeter.gui.util.MenuFactory#ASSERTIONS}, which is
* appropriate for most assertion components.
*
* @return a Collection of Strings, where each element is one of the
* constants defined in MenuFactory
*/
public Collection getMenuCategories() {
return Arrays.asList(new String[] {
MenuFactory. [[#variablee0d4640]]
} );
}
}
|