blob: 31148d89734c2d602740427dfbfe6b39b7b05ccb [file] [log] [blame]
/*
* Created on Nov 15, 2004
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package org.eclipse.jst.servlet.ui.internal.plugin;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.ui.plugin.AbstractUIPlugin;
/**
* @author jlanuti
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class ServletUIPlugin extends AbstractUIPlugin {
public static final String PLUGIN_ID = "org.eclipse.jst.servlet.ui"; //$NON-NLS-1$
// The shared instance.
private static ServletUIPlugin plugin;
/**
* The constructor.
*/
public ServletUIPlugin() {
super();
plugin = this;
}
/**
* Returns the shared instance.
*/
public static ServletUIPlugin getDefault() {
return plugin;
}
/**
* Returns the workspace instance.
*/
public static IWorkspace getWorkspace() {
return ResourcesPlugin.getWorkspace();
}
}