blob: cb0e50931510f3bac586b695e9b35dc44e961710 [file] [log] [blame]
package org.eclipse.egf.example.task.h2;
import org.eclipse.egf.common.ui.activator.EGFAbstractUIPlugin;
import org.eclipse.ui.PlatformUI;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle
*/
public class Activator extends EGFAbstractUIPlugin {
// The shared instance
private static Activator plugin;
/*
* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
logInfo("org.eclipse.egf.example.task.h2 is starting"); //$NON-NLS-1$
}
/*
* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
@Override
public void stop(BundleContext context) throws Exception {
if (PlatformUI.isWorkbenchRunning()) {
logInfo("org.eclipse.egf.example.task.h2 is stopping"); //$NON-NLS-1$
}
plugin = null;
super.stop(context);
}
/**
* Returns the shared instance
*
* @return the shared instance
*/
public static Activator getDefault() {
return plugin;
}
}