blob: dace07c87e6bcc56ef179505ef2ff6412ac9f64e [file] [log] [blame]
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
package org.eclipse.jdt.internal.launching;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
public class LaunchingMessages {
private static final String RESOURCE_BUNDLE= "org.eclipse.jdt.internal.launching.LaunchingMessages";//$NON-NLS-1$
private static ResourceBundle fgResourceBundle= ResourceBundle.getBundle(RESOURCE_BUNDLE);
public static String getString(String key) {
try {
return fgResourceBundle.getString(key);
} catch (MissingResourceException e) {
return "!" + key + "!";//$NON-NLS-2$ //$NON-NLS-1$
}
}
}