blob: a0cffc1547a1f0fbcec0304ec93143b5e90e3fc3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 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 org.eclipse.scout.rt.ui.rap;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle
*/
public class Activator extends AbstractUIPlugin {
public static final String PLUGIN_ID = "org.eclipse.scout.rt.ui.rap.incubator.filechooser";
private static Activator m_plugin;
public Activator() {
}
public static Activator getDefault() {
return m_plugin;
}
@Override
public void start(BundleContext context) throws Exception {
super.start(context);
m_plugin = this;
}
@Override
public void stop(BundleContext context) throws Exception {
m_plugin = null;
super.stop(context);
}
}