blob: c4e53604fefa2321fb0e3b100a10e6446f71b468 [file] [log] [blame]
package org.eclipse.papyrus.uml.diagram.clazz.lf.autosizeableclasses.tests;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator {
private static BundleContext context;
static BundleContext getContext() {
return context;
}
public void start(BundleContext bundleContext) throws Exception {
Activator.context = bundleContext;
}
public void stop(BundleContext bundleContext) throws Exception {
Activator.context = null;
}
}