blob: 64871ac578ed10ef39edf6f7fe790d273c8c2e00 [file] [log] [blame]
import org.checkerframework.checker.guieffect.qual.*;
package org.osgi.framework;
public interface BundleActivator {
// These methods are present on all plugins, UI or not
@PolyUIEffect void start(BundleContext context);
@PolyUIEffect void stop(BundleContext context);
}