blob: 70af2a2283c314767ce2106cdf5246e6e31cc68a [file] [log] [blame]
package org.eclipse.scout.sdk.help.internal;
import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleContext;
public class ScoutSdkHelpActivator extends Plugin {
private static ScoutSdkHelpActivator instance;
public static ScoutSdkHelpActivator getInstance() {
return instance;
}
@Override
public void start(BundleContext bundleContext) throws Exception {
instance = this;
}
@Override
public void stop(BundleContext bundleContext) throws Exception {
instance = null;
}
}