package org.debug; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; public class Activator implements BundleActivator { @Override public void start(BundleContext context) throws Exception { // TODO Auto-generated method stub System.out.println("Hello debug"); } @Override public void stop(BundleContext context) throws Exception { // TODO Auto-generated method stub } }