blob: e7c31ed8db478c0d32e355571c722b5844ac4f0d [file] [log] [blame]
/**
* Copyright (c) 2003 IBM Corporation and others.
* All rights reserved.   This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
 *
* Contributors:
* IBM - Initial API and implementation
*/
package org.eclipse.wtp.releng.tools.pii;
import java.text.MessageFormat;
import org.eclipse.core.runtime.*;
import org.eclipse.ui.plugin.AbstractUIPlugin;
import org.osgi.framework.BundleContext;
/**
* The property file utility.
*/
public class PropertiesPlugin extends AbstractUIPlugin {
// Web browser plugin id
public static final String PLUGIN_ID = "org.eclipse.tools.properties";
// singleton instance of this class
private static PropertiesPlugin singleton;
/**
* Create the PropertiesPlugin
*/
public PropertiesPlugin() {
super();
singleton = this;
}
/**
* Returns the singleton instance of this plugin.
*
* @return org.eclipse.wst.webbrowser.WebBrowserPlugin
*/
public static PropertiesPlugin getInstance() {
return singleton;
}
/**
* Returns the translated String found with the given key.
*
* @param key java.lang.String
* @return java.lang.String
*/
public static String getResource(String key) {
try {
return Platform.getResourceString(getInstance().getBundle(), key);
} catch (Exception e) {
return key;
}
}
/**
* Returns the translated String found with the given key,
* and formatted with the given arguments using java.text.MessageFormat.
*
* @param key java.lang.String
* @param arg java.lang.String
* @return java.lang.String
*/
public static String getResource(String key, String arg) {
try {
String text = getResource(key);
return MessageFormat.format(text, new String[] { arg });
} catch (Exception e) {
return key;
}
}
public void start(BundleContext context) throws Exception {
super.start(context);
}
/**
* Shuts down this plug-in and saves all plug-in state.
*
* @exception Exception
*/
public void stop(BundleContext context) throws Exception {
super.stop(context);
}
}