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