blob: c8262b41cbb6abb19bb63755eed98f0d131a19db [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 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
* yyyymmdd bug Email and other contact information
* -------- -------- -----------------------------------------------------------
* 20070502 185208 sengpl@ca.ibm.com - Seng Phung-Lu
*******************************************************************************/
package org.eclipse.jst.ws.tests.performance.plugin;
import org.eclipse.ui.plugin.AbstractUIPlugin;
/**
* The main plugin class to be used in the desktop.
*/
public class PerformancePlugin extends AbstractUIPlugin {
//The shared instance.
private static PerformancePlugin plugin;
/**
* The constructor.
*/
public PerformancePlugin() {
super();
plugin = this;
}
/**
* Returns the shared instance.
*/
public static PerformancePlugin getDefault() {
return plugin;
}
}