|
Apache Tomcat 6.0.53 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.tomcat.util.res.StringManager
public class StringManager
An internationalization / localization helper class which reduces the bother of handling ResourceBundles and takes care of the common cases of message formating which otherwise require the creation of Object arrays and such.
The StringManager operates on a package basis. One StringManager per package can be created and accessed via the getManager method call.
The StringManager will look for a ResourceBundle named by the package name given plus the suffix of "LocalStrings". In practice, this means that the localized information will be contained in a LocalStrings.properties file located in the package directory of the class path.
Please see the documentation for java.util.ResourceBundle for more information.
ResourceBundle
Method Summary | |
---|---|
java.util.Locale |
getLocale()
Identify the Locale this StringManager is associated with. |
static StringManager |
getManager(java.lang.Class<?> clazz)
Get the StringManager for a given class. |
static StringManager |
getManager(java.util.ResourceBundle bundle)
Deprecated. This is unused in Tomcat 6 and will be removed in Tomcat 7 |
static StringManager |
getManager(java.lang.String packageName)
Get the StringManager for a particular package. |
static StringManager |
getManager(java.lang.String packageName,
java.util.Enumeration<java.util.Locale> requestedLocales)
Retrieve the StringManager for a list of Locales. |
static StringManager |
getManager(java.lang.String packageName,
java.util.Locale locale)
Get the StringManager for a particular package and Locale. |
java.lang.String |
getString(java.lang.String key)
Get a string from the underlying resource bundle or return null if the String is not found. |
java.lang.String |
getString(java.lang.String key,
java.lang.Object... args)
Get a string from the underlying resource bundle and format it with the given set of arguments. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public java.lang.String getString(java.lang.String key)
key
- to desired resource String
java.lang.IllegalArgumentException
- if key is nullpublic java.lang.String getString(java.lang.String key, java.lang.Object... args)
key
- The key for the required messageargs
- The values to insert into the message
public java.util.Locale getLocale()
public static final StringManager getManager(java.lang.Class<?> clazz)
clazz
- The class for which to retrieve the StringManager
public static final StringManager getManager(java.lang.String packageName)
packageName
- The package name
public static final StringManager getManager(java.lang.String packageName, java.util.Locale locale)
packageName
- The package namelocale
- The Locale
public static StringManager getManager(java.lang.String packageName, java.util.Enumeration<java.util.Locale> requestedLocales)
packageName
- The package for which the StringManager was
requestedrequestedLocales
- the list of Locales
@Deprecated public static final StringManager getManager(java.util.ResourceBundle bundle)
bundle
- The resource bundle
null
|
Apache Tomcat 6.0.53 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |