blob: 8dfd071aa9552445ee055a56191aaf2ec7f21d88 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* 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:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.framework.core;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class CoreActivator implements BundleActivator {
public static final String PLUGIN_ID = "org.eclipse.osee.framework.core";
private static CoreActivator instance = null;
private BundleContext bundleContext;
/*
* (non-Javadoc)
* @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
instance = this;
instance.bundleContext = context;
}
/*
* (non-Javadoc)
* @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
instance.bundleContext = null;
instance = null;
}
public static BundleContext getBundleContext() {
return instance.bundleContext;
}
}