blob: 40b04795cc95b6942d33ba2c9a803af77199c0f8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2018 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.xsl.tests;
import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleContext;
public class XSLTestPlugin extends Plugin {
// The plug-in ID
/**
* TODO: Add JavaDoc
*/
public static final String PLUGIN_ID = "org.eclipse.wst.xsl.core"; //$NON-NLS-1$
private BundleContext bundleContext;
// The shared instance
private static XSLTestPlugin plugin;
/*
* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
super.start(context);
bundleContext = context;
plugin = this;
}
/*
* (non-Javadoc)
* @see org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
/**
* Returns the shared instance
*
* @return the shared instance
*/
public static XSLTestPlugin getDefault() {
return plugin;
}
}