ext.bundle.xml.dom4j.Activator Maven / Gradle / Ivy
package ext.bundle.xml.dom4j;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator {
public void start(BundleContext context) throws Exception {
// TODO add activation code here
}
public void stop(BundleContext context) throws Exception {
// TODO add deactivation code here
}
}