blob: 7c144df5950820d9c3e16cf37178384a51e1711c [file] [log] [blame]
package org.eclipse.wst.jsdt.debug.opera;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class OperaPlugin implements BundleActivator {
private static BundleContext context;
static BundleContext getContext() {
return context;
}
/*
* (non-Javadoc)
* @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext bundleContext) throws Exception {
OperaPlugin.context = bundleContext;
}
/*
* (non-Javadoc)
* @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext bundleContext) throws Exception {
OperaPlugin.context = null;
}
}