| org.eclipse.ui.internal.examples.navigator.Activator
Activator | public class Activator extends AbstractUIPlugin (Code) | | The activator class controls the plug-in life cycle
|
Method Summary | |
public static IStatus | createErrorStatus(int aCode, String aMessage, Throwable exception) | public static IStatus | createStatus(int severity, int aCode, String aMessage, Throwable exception) Create a status associated with this plugin. | public static Activator | getDefault() | public static void | log(int severity, int aCode, String aMessage, Throwable exception) Record a message against this plugin's log. | public static void | log(IStatus aStatus) Record a status against this plugin's log. | public static void | logError(int aCode, String aMessage, Throwable anException) Record an error against this plugin's log. | public void | start(BundleContext context) | public void | stop(BundleContext context) |
PLUGIN_ID | final public static String PLUGIN_ID(Code) | | The plug-in ID
|
Activator | public Activator()(Code) | | The constructor
|
createErrorStatus | public static IStatus createErrorStatus(int aCode, String aMessage, Throwable exception)(Code) | | Parameters: aCode - Parameters: aMessage - Parameters: exception - A status configured with this plugin's id and the given parameters. |
createStatus | public static IStatus createStatus(int severity, int aCode, String aMessage, Throwable exception)(Code) | | Create a status associated with this plugin.
Parameters: severity - Parameters: aCode - Parameters: aMessage - Parameters: exception - A status configured with this plugin's id and the given parameters. |
getDefault | public static Activator getDefault()(Code) | | Returns the shared instance
the shared instance |
log | public static void log(int severity, int aCode, String aMessage, Throwable exception)(Code) | | Record a message against this plugin's log.
Parameters: severity - Parameters: aCode - Parameters: aMessage - Parameters: exception - |
log | public static void log(IStatus aStatus)(Code) | | Record a status against this plugin's log.
Parameters: aStatus - |
logError | public static void logError(int aCode, String aMessage, Throwable anException)(Code) | | Record an error against this plugin's log.
Parameters: aCode - Parameters: aMessage - Parameters: anException - |
|
|