de.bund.bfr.knime.fsklab.preferences/src/de/bund/bfr/knime/fsklab/preferences/Plugin.java
package de.bund.bfr.knime.fsklab.preferences;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
public class Plugin extends AbstractUIPlugin {
private static Plugin plugin;
public static Plugin getDefault() {
return plugin;
}
public Plugin() {
plugin = this;
}
public void start(BundleContext context) throws Exception {
super.start(context);
}
public void stop(BundleContext context) throws Exception {
super.stop(context);
}
}