blob: 4e56f1d0245a5eb6e147e50aa458b3c55ea80d7a [file] [log] [blame]
package sample.shared;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator {
public static String PLUGIN_ID = "sample.shared";
private static Activator plugin;
public static Activator getDefault() {
return plugin;
}
@Override
public void start(BundleContext context) throws Exception {
plugin = this;
}
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
}
}