org.mule.tooling.ui.contribution.Car2goActivator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of car2go-connector Show documentation
Show all versions of car2go-connector Show documentation
Mule Anypoint Connector for the Car2Go API v2.1
The newest version!
package org.mule.tooling.ui.contribution;
import javax.annotation.Generated;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle
*
*/
@SuppressWarnings("all")
@Generated(value = "Mule DevKit Version 3.8.0", date = "2017-04-01T05:55:33-05:00", comments = "Build UNNAMED.2762.e3b1307")
public class Car2goActivator
extends AbstractUIPlugin
{
public final static String PLUGIN_ID = "org.mule.tooling.ui.contribution.car2go";
private static org.mule.tooling.ui.contribution.Car2goActivator 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);
}
public static org.mule.tooling.ui.contribution.Car2goActivator getDefault() {
return plugin;
}
}