blob: 09349f9c0f2e459df856c1f5d1651bff15a6aae7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2013 EclipseSourceand others.
* 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:
* EclipseSource - initial API and implementation
******************************************************************************/
package org.eclipse.rap.tools.templates.internal;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
public class Activator extends AbstractUIPlugin {
public static final String PLUGIN_ID = "org.eclipse.rap.tools.templates"; //$NON-NLS-1$
private static Activator plugin;
public static Activator getDefault() {
return plugin;
}
public void start( BundleContext context ) throws Exception {
super.start( context );
plugin = this;
}
public void stop( BundleContext context ) throws Exception {
plugin = null;
super.stop( context );
}
}