blob: 6708c0ee7cd6af9af66ed2eccb5fa76f6671aa76 [file] [log] [blame]
package test.bug235958.x.internal;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
import test.bug235958.x.X1;
public class Activator implements BundleActivator {
/*
* (non-Javadoc)
* @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
new X1();
}
/*
* (non-Javadoc)
* @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
}
}