blob: cb8f4abd1f8ef68c9738c0ad8afbdc3cf9b75a20 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 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.command.internal.env.plugin;
import org.eclipse.core.runtime.Plugin;
/**
* The main plugin class to be used in the desktop.
*/
public class EnvPlugin extends Plugin {
//The shared instance.
private static EnvPlugin instance;
/**
* The constructor.
*/
public EnvPlugin() {
super();
instance = this;
}
/**
* Returns the shared instance.
*/
public static EnvPlugin getInstance() {
return instance;
}
}