blob: 26a7becbef91dd78144307addc3e84e03d369c17 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Obeo.
* 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:
* Obeo - initial API and implementation
*******************************************************************************/
package org.eclipse.emf.compare.tests.performance;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
/**
* @author <a href="mailto:mikael.barbero@obeo.fr">Mikael Barbero</a>
*
*/
public class EMFComparePerformanceActivator implements BundleActivator {
private static BundleContext context;
public static BundleContext getContext() {
return context;
}
/**
* {@inheritDoc}
* @see org.osgi.framework.BundleActivator#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
this.context = context;
}
/**
* {@inheritDoc}
* @see org.osgi.framework.BundleActivator#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
// TODO Auto-generated method stub
}
}