blob: 192e29505bb8857017ec3bc70171ecf7fa6ab5a8 [file] [log] [blame]
package org.eclipse.jdt.internal.debug.ui.console;
/**********************************************************************
Copyright (c) 2002 IBM Corp. All rights reserved.
This file is 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
**********************************************************************/
import java.util.MissingResourceException;
import java.util.ResourceBundle;
public class ConsoleMessages {
private static final String BUNDLE_NAME = "org.eclipse.jdt.internal.debug.ui.console.ConsoleMessages"; //$NON-NLS-1$
private static final ResourceBundle RESOURCE_BUNDLE =
ResourceBundle.getBundle(BUNDLE_NAME);
private ConsoleMessages() {
}
public static String getString(String key) {
try {
return RESOURCE_BUNDLE.getString(key);
} catch (MissingResourceException e) {
return '!' + key + '!';
}
}
}