blob: 2273717cb92c6b0bedfb70fffd00bbab31577b37 [file] [log] [blame]
package org.eclipse.ptp.debug.internal.ui.propertypages;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
public class PropertyPageMessages {
private static final String BUNDLE_NAME = "org.eclipse.ptp.debug.internal.ui.propertypages.PropertyPageMessages";
private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME);
/** Constructor
*
*/
private PropertyPageMessages() {}
/** Get string
* @param key
* @return
*/
public static String getString(String key) {
try {
return RESOURCE_BUNDLE.getString(key);
} catch(MissingResourceException e) {
return '!' + key + '!';
}
}
}