Package de.gebit.integrity.eclipse
Class Activator
- java.lang.Object
-
- org.eclipse.core.runtime.Plugin
-
- org.eclipse.ui.plugin.AbstractUIPlugin
-
- de.gebit.integrity.eclipse.Activator
-
- All Implemented Interfaces:
org.osgi.framework.BundleActivator
public class Activator extends org.eclipse.ui.plugin.AbstractUIPluginThe activator class controls the plug-in life cycle.- Author:
- Rene Schneider - initial API and implementation
-
-
Constructor Summary
Constructors Constructor Description Activator()The constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static org.eclipse.jface.resource.ImageDescriptorgetImageDescriptor(String aPath)Returns an image descriptor for the image file at the given plug-in relative path.static ActivatorgetInstance()Returns the shared instance.voidstart(org.osgi.framework.BundleContext aContext)Will be called by OSGi when the bundle is started.voidstop(org.osgi.framework.BundleContext aContext)Will be called by OSGi when the bundle is stopped.-
Methods inherited from class org.eclipse.ui.plugin.AbstractUIPlugin
createImageRegistry, getDialogSettings, getImageRegistry, getPreferenceStore, getWorkbench, imageDescriptorFromPlugin, initializeDefaultPluginPreferences, initializeDefaultPreferences, initializeImageRegistry, loadDialogSettings, loadPreferenceStore, refreshPluginActions, saveDialogSettings, savePreferenceStore, shutdown, startup
-
-
-
-
Field Detail
-
PLUGIN_ID
public static final String PLUGIN_ID
The plug-in ID.- See Also:
- Constant Field Values
-
-
Method Detail
-
start
public void start(org.osgi.framework.BundleContext aContext) throws ExceptionWill be called by OSGi when the bundle is started.- Specified by:
startin interfaceorg.osgi.framework.BundleActivator- Overrides:
startin classorg.eclipse.ui.plugin.AbstractUIPlugin- Throws:
Exception
-
stop
public void stop(org.osgi.framework.BundleContext aContext) throws ExceptionWill be called by OSGi when the bundle is stopped.- Specified by:
stopin interfaceorg.osgi.framework.BundleActivator- Overrides:
stopin classorg.eclipse.ui.plugin.AbstractUIPlugin- Throws:
Exception
-
getInstance
public static Activator getInstance()
Returns the shared instance.- Returns:
- the shared instance
-
getImageDescriptor
public static org.eclipse.jface.resource.ImageDescriptor getImageDescriptor(String aPath)
Returns an image descriptor for the image file at the given plug-in relative path.- Parameters:
aPath- the path- Returns:
- the image descriptor
-
-