blob: 3bd405ccf6163213eefd6170637cd979a78d1cb6 [file] [log] [blame]
package org.eclipse.releng.build.tools.convert.application;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator {
private static BundleContext context;
static BundleContext getContext() {
return context;
}
@Override
public void start(final BundleContext bundleContext) throws Exception {
Activator.context = bundleContext;
}
@Override
public void stop(final BundleContext bundleContext) throws Exception {
Activator.context = null;
}
}