blob: 5df9b74dc9a0079fc84a93295842328dab2ebea0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jem.tests;
/*
* $RCSfile: JavaTestsPlugin.java,v $
* $Revision: 1.6 $ $Date: 2005/08/24 20:58:54 $
*/
import org.eclipse.core.runtime.Plugin;
/**
* @author richkulp
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class JavaTestsPlugin extends Plugin {
private static JavaTestsPlugin PLUGIN;
/**
* @param descriptor
*/
public JavaTestsPlugin() {
PLUGIN = this;
}
public static JavaTestsPlugin getPlugin() {
return PLUGIN;
}
}