/******************************************************************************* * Copyright (c) 2011, 2014 Wind River Systems, Inc. and others. All rights reserved. * This program and the accompanying materials are made available under the terms * of the Eclipse Public License v1.0 which accompanies this distribution, and is * available at http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Wind River Systems - initial API and implementation *******************************************************************************/ package org.eclipse.tcf.te.runtime.persistence.activator; import org.eclipse.core.runtime.Plugin; import org.osgi.framework.BundleContext; /** * The activator class controls the plug-in life cycle */ public class CoreBundleActivator extends Plugin { // The bundle context private static BundleContext context; // The shared instance of this plug-in. private static CoreBundleActivator plugin; /** * Returns the bundle context * * @return the bundle context */ public static BundleContext getContext() { return context; } /** * Returns the shared instance * * @return the shared instance */ public static CoreBundleActivator getDefault() { return plugin; } /** * Convenience method which returns the unique identifier of this plugin. */ public static String getUniqueIdentifier() { if (getContext() != null && getContext().getBundle() != null) { return getContext().getBundle().getSymbolicName(); } return "org.eclipse.tcf.te.runtime.persistence"; //$NON-NLS-1$ } /* * (non-Javadoc) * @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext) */ @Override public void start(BundleContext bundleContext) throws Exception { CoreBundleActivator.context = bundleContext; plugin = this; } /* * (non-Javadoc) * @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext) */ @Override public void stop(BundleContext bundleContext) throws Exception { CoreBundleActivator.context = null; plugin = null; } }