blob: 75601aa56e6704202ef89c5e04121b1256f267a4 [file] [log] [blame]
package org.eclipse.papyrus.cdo.security.properties;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
public class Activator extends AbstractUIPlugin {
// The plug-in ID
public static final String PLUGIN_ID = "org.eclipse.papyrus.cdo.security.properties"; //$NON-NLS-1$
private static Activator plugin;
public Activator() {
super();
}
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
@Override
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
public static Activator getDefault() {
return plugin;
}
}