blob: 53558eaf816d4df4e00747960ba1f0cfef6a9d44 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011-2012 EclipseSource Muenchen GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Eugen Neufeld - initial API and implementation
*
*******************************************************************************/
package org.eclipse.emf.ecp.core.emffilter.internal;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle.
*/
public class Activator implements BundleActivator {
private static BundleContext context;
/**
* Returns the shared instance.
*
* @return the shared instance
*/
static BundleContext getContext() {
return context;
}
// BEGIN SUPRESS CATCH EXCEPTION
/**
* {@inheritDoc}
*/
@Override
public void start(BundleContext bundleContext) throws Exception {
Activator.context = bundleContext;
}
/**
* {@inheritDoc}
*/
@Override
public void stop(BundleContext bundleContext) throws Exception {
Activator.context = null;
}
// END SUPRESS CATCH EXCEPTION
}