blob: 552c6d47613a43907454160cb6cd5daf13c51c71 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 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.ats.core.client.internal;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator {
public static final String PLUGIN_ID = "org.eclipse.osee.ats.core.client";
@Override
public void start(BundleContext bundleContext) throws Exception {
// do nothing
}
@Override
public void stop(BundleContext bundleContext) throws Exception {
// do nothing
}
}