blob: 12776856167d646b79a7635fb6d0412520c69f13 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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
*******************************************************************************/
package org.eclipse.wst.server.http.core.internal;
import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleContext;
/**
* The HTTP server core plugin.
*/
public class HttpCorePlugin extends Plugin {
public static final String PLUGIN_ID = "org.eclipse.wst.server.http.core";
private static HttpCorePlugin plugin;
/**
* The constructor
*/
public HttpCorePlugin() {
plugin = this;
}
/**
* Returns the singleton instance of this plugin.
*
* @return an instance
*/
public static HttpCorePlugin getInstance() {
return plugin;
}
/**
* Return the install location preference.
*
* @param id a runtime type id
* @return the install location
*/
public static String getPreference(String id) {
return getInstance().getPluginPreferences().getString(id);
}
/**
* Set the install location preference.
*
* @param id the runtimt type id
* @param value the location
*/
public static void setPreference(String id, String value) {
getInstance().getPluginPreferences().setValue(id, value);
getInstance().savePluginPreferences();
}
/*
* (non-Javadoc)
*
* @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
}