Package javax.help
Interface CSH.Manager
- Enclosing class:
CSH
public static interface CSH.Manager
CSH Manager Interface to support dynamic
HelpSet
and ID
for object. CSH is allowed only for Component
and MenuItem
.- Since:
- 2.0
-
Method Summary
Modifier and TypeMethodDescriptiongetHelpIDString
(Object comp, AWTEvent e) Returns String represent Map.ID of the object depending on the event.getHelpSet
(Object comp, AWTEvent e) Returns HelpSet of the object depending on the event.
-
Method Details
-
getHelpSet
Returns HelpSet of the object depending on the event.- Parameters:
comp
- The object to getHelpSet
for it. OnlyComponent
andMenuItem
is allowed.e
- The event by which dynamic CSH was invoked. It can beMouseEvent
in case of window level CSH,ActionEvent
in case of field level CSH ornull
otherwise.- Returns:
- A HelpSet for given object or null if no HelpSet is assigned to object
- See Also:
-
getHelpIDString
Returns String represent Map.ID of the object depending on the event.- Parameters:
comp
- The object to getMap.ID
for it. OnlyComponent
andMenuItem
is allowed.e
- The event by which dynamic CSH was invoked. It can beMouseEvent
in case of window level CSH,ActionEvent
in case of field level CSH ornull
otherwise.- Returns:
- A Map.ID string for given object or null if no Map.ID is assigned to object
- See Also:
-