blob: 3baba9c0c89fc5ddc63ddddf8f81c5481cc23c9e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package formfield.shared;
import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext;
public class Activator implements BundleActivator{
public static String PLUGIN_ID="formfield.shared";
private static Activator plugin;
public static Activator getDefault(){
return plugin;
}
@Override
public void start(BundleContext context) throws Exception{
plugin=this;
}
@Override
public void stop(BundleContext context) throws Exception{
plugin=null;
}
}