package a;
import java.util.Locale;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
public class Messages {
private static final String BUNDLE_NAME = "a.ApplicationResources"; //$NON-NLS-1$
private static ResourceBundle RESOURCE_BUNDLE = null;
private Messages() {
}
public static void setLocale(Locale locale) {
RESOURCE_BUNDLE = ResourceBundle.getBundle(BUNDLE_NAME, locale);
}
public static String getString(String key) {
try {
return RESOURCE_BUNDLE.getString(key);
} catch (MissingResourceException e) {
return '!' + key + '!';
}
}
}
# posted by ointernetinho : 6:10 PM