blob: 69a0724f8d8fa928bc29ef40e8ec1fcc68dbd13a [file]
package $packageName$;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class $applicationClass$ implements BundleActivator {
public void start(BundleContext context) throws Exception {
System.out.println("$startMessage$");
}
public void stop(BundleContext context) throws Exception {
System.out.println("$stopMessage$");
}
}