debuggercdi/com.nokia.cdt.debug.common/src/com/nokia/cdt/debug/common/CarbideCommonDebuggerPlugin.java
changeset 1096 96e5879cd42d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/debuggercdi/com.nokia.cdt.debug.common/src/com/nokia/cdt/debug/common/CarbideCommonDebuggerPlugin.java	Thu Mar 11 13:45:01 2010 -0600
@@ -0,0 +1,50 @@
+package com.nokia.cdt.debug.common;
+
+import org.eclipse.core.runtime.Plugin;
+import org.osgi.framework.BundleContext;
+
+/**
+ * The activator class controls the plug-in life cycle
+ */
+public class CarbideCommonDebuggerPlugin extends Plugin {
+
+	// The plug-in ID
+	public static final String PLUGIN_ID = "com.nokia.cdt.debug.common";
+
+	// The shared instance
+	private static CarbideCommonDebuggerPlugin plugin;
+	
+	/**
+	 * The constructor
+	 */
+	public CarbideCommonDebuggerPlugin() {
+	}
+
+	/*
+	 * (non-Javadoc)
+	 * @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext)
+	 */
+	public void start(BundleContext context) throws Exception {
+		super.start(context);
+		plugin = this;
+	}
+
+	/*
+	 * (non-Javadoc)
+	 * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)
+	 */
+	public void stop(BundleContext context) throws Exception {
+		plugin = null;
+		super.stop(context);
+	}
+
+	/**
+	 * Returns the shared instance
+	 *
+	 * @return the shared instance
+	 */
+	public static CarbideCommonDebuggerPlugin getDefault() {
+		return plugin;
+	}
+
+}