debuggercdi/com.nokia.cdt.debug.common/src/com/nokia/cdt/debug/common/CarbideCommonDebuggerPlugin.java
author timkelly
Thu, 11 Mar 2010 13:45:01 -0600
changeset 1096 96e5879cd42d
permissions -rw-r--r--
Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.

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;
	}

}