|
Apache JMeter | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.jmeter.gui.GUIFactory
public final class GUIFactory
Provides a way to register and retrieve GUI classes and icons.
| Method Summary | |
|---|---|
static javax.swing.JComponent |
getGUI(java.lang.Class elementClass)
Get a component instance which has previously been registered for this class object. |
static javax.swing.ImageIcon |
getIcon(java.lang.Class elementClass)
Get an icon which has previously been registered for this class object. |
static javax.swing.ImageIcon |
getIcon(java.lang.Class elementClass,
boolean enabled)
Get icon/disabledicon which has previously been registered for this class object. |
static void |
registerDisabledIcon(java.lang.String key,
javax.swing.ImageIcon icon)
Register an icon so that it can later be retrieved via getIcon(Class). |
static void |
registerGUI(java.lang.String key,
java.lang.Class guiClass,
java.lang.Class testClass)
Register a GUI class so that it can later be retrieved via getGUI(Class). |
static void |
registerIcon(java.lang.String key,
javax.swing.ImageIcon icon)
Register an icon so that it can later be retrieved via getIcon(Class). |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public static javax.swing.ImageIcon getIcon(java.lang.Class elementClass)
elementClass - the class object which we want to get an icon for
public static javax.swing.ImageIcon getIcon(java.lang.Class elementClass,
boolean enabled)
elementClass - the class object which we want to get an icon forenabled - -
is icon enabled
public static javax.swing.JComponent getGUI(java.lang.Class elementClass)
elementClass - the class object which we want to get an instance of
public static void registerIcon(java.lang.String key,
javax.swing.ImageIcon icon)
getIcon(Class). The key should match the fully-qualified class
name for the class used as the parameter when retrieving the icon.
key - the name which can be used to retrieve this icon latericon - the icon to store
public static void registerDisabledIcon(java.lang.String key,
javax.swing.ImageIcon icon)
getIcon(Class). The key should match the fully-qualified class
name for the class used as the parameter when retrieving the icon.
key - the name which can be used to retrieve this icon latericon - the icon to store
public static void registerGUI(java.lang.String key,
java.lang.Class guiClass,
java.lang.Class testClass)
throws java.lang.InstantiationException,
java.lang.IllegalAccessException
getGUI(Class). The key should match the fully-qualified class
name for the class used as the parameter when retrieving the GUI.
key - the name which can be used to retrieve this GUI laterguiClass - the class object for the GUI componenttestClass - the class of the objects edited by this GUI
java.lang.InstantiationException - if an instance of the GUI class can not be instantiated
java.lang.IllegalAccessException - if access rights do not permit an instance of the GUI class
to be created
|
Apache JMeter | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||