org.apache.naming
public class StringManager extends 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.
Method Summary | |
---|---|
static StringManager | getManager(String packageName)
Get the StringManager for a particular package. |
String | getString(String key)
Get a string from the underlying resource bundle.
|
String | getString(String key, Object[] args)
Get a string from the underlying resource bundle and format
it with the given set of arguments.
|
String | getString(String key, Object arg)
Get a string from the underlying resource bundle and format it
with the given object argument. |
String | getString(String key, Object arg1, Object arg2)
Get a string from the underlying resource bundle and format it
with the given object arguments. |
String | getString(String key, Object arg1, Object arg2, Object arg3)
Get a string from the underlying resource bundle and format it
with the given object arguments. |
String | getString(String key, Object arg1, Object arg2, Object arg3, Object arg4)
Get a string from the underlying resource bundle and format it
with the given object arguments. |
Parameters: packageName
Parameters: key
Parameters: key args
Parameters: key arg
Parameters: key arg1 arg2
Parameters: key arg1 arg2 arg3
Parameters: key arg1 arg2 arg3 arg4