Package com.sun.javatest.tool
Class ToolManager
java.lang.Object
com.sun.javatest.tool.ToolManager
- Direct Known Subclasses:
ExecToolManager
Tool managers are relatively lightweight managers for tools
that provide end-user GUI functionality.
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
This exception is used to report problems while using a tool manager. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final I18NResourceBundle
The standard resource bundle for this tool manager, defined in the filei18n.properties
in the same package as the tool manager. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
ToolManager
(Desktop desktop) Create a tool manager to manage tools on a desktop. -
Method Summary
Modifier and TypeMethodDescriptionprotected Icon
createIcon
(String key) Create an icon from a resource specified in the standard resource bundle for this tool manager.Get the desktop for which this manager is managing tools.Action[]
Get actions for any items to appear in the main section of the desktop File menu.Get primary file menu opereations for this tool.Get secondary file menu opereations for this tool.Get handlers for any files that can be opened by this tool manager.Get details about any user preferences supported by this tool manager.Action[]
Deprecated.There is no tasks menu anymore.Action[]
Deprecated.abstract Tool
restoreTool
(Map<String, String> m) Restore a tool from previously saved information.abstract Tool
Start a default instance of a tool.
-
Field Details
-
i18n
The standard resource bundle for this tool manager, defined in the filei18n.properties
in the same package as the tool manager.
-
-
Constructor Details
-
ToolManager
Create a tool manager to manage tools on a desktop.- Parameters:
desktop
- the desktop for which this manager should manage tools
-
-
Method Details
-
getDesktop
Get the desktop for which this manager is managing tools.- Returns:
- the desktop for which this manager should manage tools
-
getPrefsPane
Get details about any user preferences supported by this tool manager.- Returns:
- an object to handle preferences supported by this tool manager, or null if no preferences are supported.
-
getFileOpeners
Get handlers for any files that can be opened by this tool manager.- Returns:
- a set of handlers for files that can be opened by this tool manager, or null if none available.
-
getFileMenuActions
Get actions for any items to appear in the main section of the desktop File menu.- Returns:
- an array of Actions to appear on the File menu, or null if none are required.
-
getFileMenuPrimaries
Get primary file menu opereations for this tool. These are placed after the actions. They will be shown in the order given in the array. There are none provided by default (null).- Returns:
- Array of menu items to be shown for this tool. Nill if none.
- See Also:
-
getFileMenuSecondaries
Get secondary file menu opereations for this tool. These are placed after all primary actions from all tools, but before the global operations like preferences, close and exit. They will be shown in the order given in the array. There are none provided by default (null).- Returns:
- Array of menu items to be shown for this tool. Nill if none.
- See Also:
-
getHelpPrimaryMenus
-
getHelpTestSuiteMenus
-
getHelpAboutMenus
-
getTaskMenuActions
Deprecated.There is no tasks menu anymore.Get actions for any items to appear in the desktop Tasks menu.- Returns:
- an array of Actions to appear on the Tasks menu, or null if none are required.
-
getWindowOpenMenuActions
Deprecated.Get actions to open any windows for this tool.- Returns:
- an array of Actions that open windows for this tool, or null if none are required.
-
startTool
Start a default instance of a tool.- Returns:
- the tool that was started
-
restoreTool
Restore a tool from previously saved information.- Parameters:
m
- a map containing the previously saved information- Returns:
- the tool that was started
- Throws:
ToolManager.Fault
- if there is a problem restoring the tool
-
createIcon
Create an icon from a resource specified in the standard resource bundle for this tool manager.- Parameters:
key
- the base name for the resource specifying the image file for the icon. The actual name of the resource is formed as follows: key ".icon
"- Returns:
- an icon containing the specified image
-