org.apache.catalina.tribes.util
public class StringManager extends java.lang.Object
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 classpath.
Please see the documentation for java.util.ResourceBundle for more information.
Modifier and Type | Method and Description |
---|---|
static StringManager |
getManager(java.lang.String packageName)
Get the StringManager for a particular package.
|
java.lang.String |
getString(java.lang.String key)
Get a string from the underlying resource bundle.
|
java.lang.String |
getString(java.lang.String key,
java.lang.Object arg)
Get a string from the underlying resource bundle and format it
with the given object argument.
|
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.
|
java.lang.String |
getString(java.lang.String key,
java.lang.Object arg1,
java.lang.Object arg2)
Get a string from the underlying resource bundle and format it
with the given object arguments.
|
java.lang.String |
getString(java.lang.String key,
java.lang.Object arg1,
java.lang.Object arg2,
java.lang.Object arg3)
Get a string from the underlying resource bundle and format it
with the given object arguments.
|
java.lang.String |
getString(java.lang.String key,
java.lang.Object arg1,
java.lang.Object arg2,
java.lang.Object arg3,
java.lang.Object arg4)
Get a string from the underlying resource bundle and format it
with the given object arguments.
|
protected java.lang.String |
getStringInternal(java.lang.String key) |
public java.lang.String getString(java.lang.String key)
key
- The resource nameprotected java.lang.String getStringInternal(java.lang.String key)
public java.lang.String getString(java.lang.String key, java.lang.Object[] args)
key
- The resource nameargs
- Formatting directivespublic java.lang.String getString(java.lang.String key, java.lang.Object arg)
key
- The resource namearg
- Formatting directivepublic java.lang.String getString(java.lang.String key, java.lang.Object arg1, java.lang.Object arg2)
key
- The resource namearg1
- Formatting directivearg2
- Formatting directivepublic java.lang.String getString(java.lang.String key, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3)
key
- The resource namearg1
- Formatting directivearg2
- Formatting directivearg3
- Formatting directivepublic java.lang.String getString(java.lang.String key, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3, java.lang.Object arg4)
key
- The resource namearg1
- Formatting directivearg2
- Formatting directivearg3
- Formatting directivearg4
- Formatting directivepublic static StringManager getManager(java.lang.String packageName)
packageName
- The package nameCopyright © 2000-2013 Apache Software Foundation. All Rights Reserved.