All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mule.tooling.ui.contribution.FtpClientActivator Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show 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.9.0", date = "2018-04-30T04:51:01+02:00", comments = "Build UNNAMED.2793.f49b6c7")
public class FtpClientActivator
    extends AbstractUIPlugin
{

    public final static String PLUGIN_ID = "org.mule.tooling.ui.contribution.ftp-client";
    private static org.mule.tooling.ui.contribution.FtpClientActivator 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.FtpClientActivator getDefault() {
        return plugin;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy