All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.HelpManager

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.HelpManager

public class HelpManager
extends NativeObject
This class wraps the Objective-C class NSHelpManager.


Variable Index

 o ContextHelpModeDidActivateNotification
 o ContextHelpModeDidDeactivateNotification

Constructor Index

 o HelpManager()
This default constructor is equivalent to Objective-C's [[NSHelpManager alloc] init].
 o HelpManager(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o contextHelpForObject(Object)
A wrapper for the - contextHelpForObject: Objective-C instance method.
 o isContextHelpModeActive()
A wrapper for the + isContextHelpModeActive Objective-C class method.
 o removeContextHelpForObject(Object)
A wrapper for the - removeContextHelpForObject: Objective-C instance method.
 o setContextHelpForObject(AttributedString, Object)
A wrapper for the - setContextHelp:forObject: Objective-C instance method.
 o setContextHelpModeActive(boolean)
A wrapper for the + setContextHelpModeActive: Objective-C class method.
 o sharedHelpManager()
A wrapper for the + sharedHelpManager Objective-C class method.
 o showContextHelpForObject(Object, Point)
A wrapper for the - showContextHelpForObject:locationHint: Objective-C instance method.

Variables

 o ContextHelpModeDidActivateNotification
 public static final String ContextHelpModeDidActivateNotification
 o ContextHelpModeDidDeactivateNotification
 public static final String ContextHelpModeDidDeactivateNotification

Constructors

 o HelpManager
 protected HelpManager(boolean shouldAllocate,
                       int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o HelpManager
 public HelpManager()
This default constructor is equivalent to Objective-C's [[NSHelpManager alloc] init].

Methods

 o sharedHelpManager
 public static native HelpManager sharedHelpManager()
A wrapper for the + sharedHelpManager Objective-C class method.

 o setContextHelpModeActive
 public static native void setContextHelpModeActive(boolean active)
A wrapper for the + setContextHelpModeActive: Objective-C class method.

 o isContextHelpModeActive
 public static native boolean isContextHelpModeActive()
A wrapper for the + isContextHelpModeActive Objective-C class method.

 o setContextHelpForObject
 public native void setContextHelpForObject(AttributedString attrString,
                                            Object object)
A wrapper for the - setContextHelp:forObject: Objective-C instance method.

 o removeContextHelpForObject
 public native void removeContextHelpForObject(Object object)
A wrapper for the - removeContextHelpForObject: Objective-C instance method.

 o contextHelpForObject
 public native AttributedString contextHelpForObject(Object object)
A wrapper for the - contextHelpForObject: Objective-C instance method.

 o showContextHelpForObject
 public native boolean showContextHelpForObject(Object object,
                                                Point pt)
A wrapper for the - showContextHelpForObject:locationHint: Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index