Package org.apache.xmlgraphics.util.i18n
Interface Localizable
- All Known Subinterfaces:
ExtendedLocalizable
- All Known Implementing Classes:
LocalizableSupport
public interface Localizable
This interface must be implemented by the classes which must provide a
way to override the default locale.
- Version:
- $Id$ Originally authored by Stephane Hillion.
-
Method Summary
Modifier and TypeMethodDescriptionformatMessage
(String key, Object[] args) Creates and returns a localized message, given the key of the message in the resource bundle and the message parameters.Returns the current locale or null if the locale currently used is the default one.void
Provides a way to the user to specify a locale which override the default one.
-
Method Details
-
setLocale
Provides a way to the user to specify a locale which override the default one. If null is passed to this method, the used locale becomes the global one.- Parameters:
l
- The locale to set.
-
getLocale
Locale getLocale()Returns the current locale or null if the locale currently used is the default one. -
formatMessage
Creates and returns a localized message, given the key of the message in the resource bundle and the message parameters. The messages in the resource bundle must have the syntax described in the java.text.MessageFormat class documentation.- Parameters:
key
- The key used to retreive the message from the resource bundle.args
- The objects that compose the message.- Throws:
MissingResourceException
- if the key is not in the bundle.
-