blob: 62ca9a03527bd34a37bcb70eb4664c3d856db857 [file] [log] [blame]
/**
* Copyright (c) 2011-2013 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:
* EclipseSource Munich - initial API and implementation
*/
package org.eclipse.emf.ecp.view.template.service;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
/**
* The Activator.
*
* @author Eugen Neufeld
*
*/
public class Activator implements BundleActivator {
private static BundleContext context;
/**
* Method allowing to get the current instance.
*
* @return the current {@link BundleContext}.
*/
static BundleContext getContext() {
return context;
}
/**
* {@inheritDoc}
*
* @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
*/
@Override
public void start(BundleContext bundleContext) throws Exception {
Activator.context = bundleContext;
}
/**
* {@inheritDoc}
*
* @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
*/
@Override
public void stop(BundleContext bundleContext) throws Exception {
Activator.context = null;
}
}