Package com.sun.javatest.exec
Interface ET_Control
-
- All Known Subinterfaces:
ET_FilterControl,ET_HelpControl,ET_ReportControl,ET_SessionControl,ET_ViewControl
- All Known Implementing Classes:
BasicSessionControl,ET_DefaultHelpControl,ET_DefaultViewControl,ET_FilterHandler
public interface ET_ControlBase interface of ExecTool components
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddispose()javax.swing.JMenugetMenu()Returts menu to be added to the menu marjava.util.List<javax.swing.Action>getToolBarActionList()Returns list of actions to be added to the tool barvoidrestore(java.util.Map<java.lang.String,java.lang.String> m)Restores saved state from the mapvoidsave(java.util.Map<java.lang.String,java.lang.String> m)Saves current state to the mapvoidupdateGUI()Invoked when some change has happened
-
-
-
Method Detail
-
updateGUI
void updateGUI()
Invoked when some change has happened
-
save
void save(java.util.Map<java.lang.String,java.lang.String> m)
Saves current state to the map
-
restore
void restore(java.util.Map<java.lang.String,java.lang.String> m)
Restores saved state from the map
-
getMenu
javax.swing.JMenu getMenu()
Returts menu to be added to the menu mar
-
getToolBarActionList
java.util.List<javax.swing.Action> getToolBarActionList()
Returns list of actions to be added to the tool bar
-
dispose
void dispose()
-
-