1 package org.simantics.selectionview;
3 import org.eclipse.ui.plugin.AbstractUIPlugin;
4 import org.osgi.framework.BundleContext;
7 * The activator class controls the plug-in life cycle
9 public class Activator extends AbstractUIPlugin {
12 public static final String PLUGIN_ID = "org.simantics.selectionview"; //$NON-NLS-1$
14 // The shared instance
15 private static Activator plugin;
25 * @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
27 public void start(BundleContext context) throws Exception {
34 * @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
36 public void stop(BundleContext context) throws Exception {
42 * Returns the shared instance
44 * @return the shared instance
46 public static Activator getDefault() {