blob: 26bc0e3f088b9032c9eafd9f8a260ebfc7b55ffe [file] [log] [blame]
package com.gemstone.gemfire.mgmt.DataBrowser.ui.tree;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
public class Messages {
private static final String BUNDLE_NAME = "com.gemstone.gemfire.mgmt.DataBrowser.ui.tree.messages";
private static final ResourceBundle RESOURCE_BUNDLE = ResourceBundle
.getBundle(BUNDLE_NAME);
private Messages() {
}
public static String getString(String key) {
try {
return RESOURCE_BUNDLE.getString(key);
} catch (MissingResourceException e) {
return '!' + key + '!';
}
}
}