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.
ResourceBundle| Modifier and Type | Method and Description | 
|---|---|
| static StringManager | getManager(Class<?> clazz) | 
| static StringManager | getManager(String packageName)Get the StringManager for a particular package. | 
| String | getString(String key)Get a string from the underlying resource bundle or return
        null if the String is not found. | 
| String | getString(String key,
         Object... args)Get a string from the underlying resource bundle and format
 it with the given set of arguments. | 
public String getString(String key)
key - to desired resource StringIllegalArgumentException - if key is null.public String getString(String key, Object... args)
key - The key for the required messageargs - The values to insert into the messagepublic static final StringManager getManager(String packageName)
packageName - The package namepublic static final StringManager getManager(Class<?> clazz)
Copyright © 2000-2020 Apache Software Foundation. All Rights Reserved.