/******************************************************************************* * Copyright (c) 2008 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 * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ package org.eclipse.wst.dtd.core.tests.internal; import org.eclipse.core.runtime.Plugin; import org.osgi.framework.BundleContext; public class DTDCoreTestsPlugin extends Plugin { private static DTDCoreTestsPlugin plugin; public static DTDCoreTestsPlugin getDefault() { return plugin; } public DTDCoreTestsPlugin() { } /* * (non-Javadoc) * * @see org.eclipse.core.runtime.Plugin#start(org.osgi.framework.BundleContext) */ public void start(BundleContext context) throws Exception { plugin = this; super.start(context); } /* * (non-Javadoc) * * @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext) */ public void stop(BundleContext context) throws Exception { super.stop(context); plugin = null; } }