blob: bb322bab167cd8ae01db41a2d29670783ccf207c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2019 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.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.wst.common.tests;
import org.eclipse.core.runtime.IExtensionPoint;
import org.eclipse.core.runtime.Platform;
import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleContext;
public class CommonTestsPlugin extends Plugin {
public static String PLUGIN_ID = "org.eclipse.wst.common.tests";
public static CommonTestsPlugin instance = null;
public IExtensionPoint dataModelVerifierExt = null;
// default constructor for use of start() and stop()
public CommonTestsPlugin()
{
}
public void start(BundleContext context) throws Exception {
super.start(context);
instance = this;
Platform.getExtensionRegistry().getExtensionPoint(PLUGIN_ID, "DataModelVerifier");
}
public void stop(BundleContext context) throws Exception {
instance = null;
super.stop(context);
}
}