blob: c41276b51e1505a73fe34359f6e9e6abdee7911a [file] [log] [blame]
/*
* Created on Nov 3, 2003
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package org.eclipse.wst.common.tests;
import org.eclipse.core.runtime.IExtensionPoint;
import org.eclipse.core.runtime.IPluginDescriptor;
import org.eclipse.core.runtime.Plugin;
/**
* @author jsholl
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public class CommonTestsPlugin extends Plugin {
public static String PLUGIN_ID = "org.eclipse.wst.common.tests";
public static CommonTestsPlugin instance = null;
public IExtensionPoint dataModelVerifierExt = null;
/**
* @param descriptor
*/
public CommonTestsPlugin(IPluginDescriptor descriptor) {
super(descriptor);
instance = this;
dataModelVerifierExt = descriptor.getExtensionPoint("DataModelVerifier");
// TODO Auto-generated constructor stub
}
}