Package javax.help
Interface CSH.Manager
-
- Enclosing class:
- CSH
public static interface CSH.ManagerCSH Manager Interface to support dynamicHelpSetandIDfor object. CSH is allowed only forComponentandMenuItem.- Since:
- 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetHelpIDString(java.lang.Object comp, java.awt.AWTEvent e)Returns String represent Map.ID of the object depending on the event.HelpSetgetHelpSet(java.lang.Object comp, java.awt.AWTEvent e)Returns HelpSet of the object depending on the event.
-
-
-
Method Detail
-
getHelpSet
HelpSet getHelpSet(java.lang.Object comp, java.awt.AWTEvent e)
Returns HelpSet of the object depending on the event.- Parameters:
comp- The object to getHelpSetfor it. OnlyComponentandMenuItemis allowed.e- The event by which dynamic CSH was invoked. It can beMouseEventin case of window level CSH,ActionEventin case of field level CSH ornullotherwise.- Returns:
- A HelpSet for given object or null if no HelpSet is assigned to object
- See Also:
CSH.DisplayHelpAfterTracking,CSH.DisplayHelpFromFocus,CSH.DisplayHelpFromSource
-
getHelpIDString
java.lang.String getHelpIDString(java.lang.Object comp, java.awt.AWTEvent e)Returns String represent Map.ID of the object depending on the event.- Parameters:
comp- The object to getMap.IDfor it. OnlyComponentandMenuItemis allowed.e- The event by which dynamic CSH was invoked. It can beMouseEventin case of window level CSH,ActionEventin case of field level CSH ornullotherwise.- Returns:
- A Map.ID string for given object or null if no Map.ID is assigned to object
- See Also:
CSH.DisplayHelpAfterTracking,CSH.DisplayHelpFromFocus,CSH.DisplayHelpFromSource
-
-