public static java.lang.String | getValue(java.lang.String key)Gets the value of the the given key from the bundle
if(resourceBundle == null)
return key;
try {
return resourceBundle.getString(key);
} catch (MissingResourceException missingResourceException) {
IGNORE_EXCEPTION(missingResourceException);
return key;
}
|