blob: ddcbccbfa070a0b94467b4d70bd463ed9341d0fb [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007-2009 BEA Systems, Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* BEA Systems, Inc. - initial API and implementation
*******************************************************************************/
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;
}
}