blob: 0639b9e728ec7ab9b0e1d9ed23c933a80b034a81 [file] [log] [blame]
package org.eclipse.jdt.apt.pluggable.tests;
import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleContext;
public class Apt6TestsPlugin extends Plugin {
public static final String PLUGIN_ID = "org.eclipse.jdt.apt.pluggable.tests"; //$NON-NLS-1$
private static Apt6TestsPlugin _thePlugin = null;
@Override
public void start(BundleContext context) throws Exception
{
super.start(context);
_thePlugin = this;
}
public Apt6TestsPlugin() {
// TODO Auto-generated constructor stub
}
public static Apt6TestsPlugin thePlugin() {
return _thePlugin;
}
}