
org.mule.tooling.ui.contribution.AssertObjectEqualsActivator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of assert-object-equals-connector Show documentation
Show all versions of assert-object-equals-connector Show documentation
A Mule connector for comparing object structures (Map/List) or XML in MUnit tests.
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.9.7", date = "2019-02-27T07:16:01+01:00", comments = "Build mule-devkit-3.9.7.2818.62a60e1")
public class AssertObjectEqualsActivator
extends AbstractUIPlugin
{
public final static String PLUGIN_ID = "org.mule.tooling.ui.contribution.assert-object-equals";
private static org.mule.tooling.ui.contribution.AssertObjectEqualsActivator 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.AssertObjectEqualsActivator getDefault() {
return plugin;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy