public class MainModule implements BundleActivator {
@Override
public void start(BundleContext context) throws Exception {
// ...
}
@Override
public void stop(BundleContext context) throws Exception {
// ...
}
}
public class OtherModule implements BundleActivator {
@Override
public void start(BundleContext context) throws Exception {
// ...
}
@Override
public void stop(BundleContext context) throws Exception {
// ...
}
}