Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 6708c0ee7cd6af9af66ed2eccb5fa76f6671aa76 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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 {
	}

}

Back to the top