blob: d8f33f1e614704ae82675c89bd607babf8430037 [file] [log] [blame]
package exporter.importer;
import exporter.importer.test.Test3;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator {
public void start(BundleContext context) throws Exception {
new Test3();
}
public void stop(BundleContext context) throws Exception {
// TODO Auto-generated method stub
}
}