public class LocalizationContext
extends java.lang.Object
An I18N localization context has two components: a resource bundle and the locale that led to the resource bundle match.
The resource bundle component is used by <fmt:message> for mapping message keys to localized messages, and the locale component is used by the <fmt:message>, <fmt:formatNumber>, <fmt:parseNumber>, <fmt:formatDate>, and <fmt:parseDate> actions as their formatting or parsing locale, respectively.
Constructor and Description |
---|
LocalizationContext()
Constructs an empty I18N localization context.
|
LocalizationContext(java.util.ResourceBundle bundle)
Constructs an I18N localization context from the given resource bundle.
|
LocalizationContext(java.util.ResourceBundle bundle,
java.util.Locale locale)
Constructs an I18N localization context from the given resource bundle
and locale.
|
Modifier and Type | Method and Description |
---|---|
java.util.Locale |
getLocale()
Gets the locale of this I18N localization context.
|
java.util.ResourceBundle |
getResourceBundle()
Gets the resource bundle of this I18N localization context.
|
public LocalizationContext()
public LocalizationContext(java.util.ResourceBundle bundle, java.util.Locale locale)
The specified locale is the application- or browser-based preferred locale that led to the resource bundle match.
bundle
- The localization context's resource bundlelocale
- The localization context's localepublic LocalizationContext(java.util.ResourceBundle bundle)
The localization context's locale is taken from the given resource bundle.
bundle
- The resource bundlepublic java.util.ResourceBundle getResourceBundle()
public java.util.Locale getLocale()