xdoclet.util
public final class Translator extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
getString(java.lang.Class clazz,
java.lang.String resourceKey)
Gets the String attribute of the Translator class.
|
static java.lang.String |
getString(java.lang.Class clazz,
java.lang.String resourceKey,
java.lang.String[] arguments)
Gets the String attribute of the Translator class.
|
static java.lang.String |
getString(java.lang.String bundleKey,
java.lang.String resourceKey)
Gets the String attribute of the Translator class.
|
static java.lang.String |
getString(java.lang.String bundleKey,
java.lang.String resourceKey,
java.lang.String[] arguments)
Gets the String attribute of the Translator class.
|
public static java.lang.String getString(java.lang.Class clazz, java.lang.String resourceKey)
clazz
- Messages class containing resource key constants, from which the bundle was generated.resourceKey
- The resource key to look up in the bundle.public static java.lang.String getString(java.lang.Class clazz, java.lang.String resourceKey, java.lang.String[] arguments)
clazz
- Messages class containing resource key constants, from which the bundle was generated.resourceKey
- The resource key to look up in the bundle.arguments
- A string array of the arguments to be substituted for any placeholders ({0}, {1} etc.) in the
resource value string.public static java.lang.String getString(java.lang.String bundleKey, java.lang.String resourceKey)
bundleKey
- Bundle name, without the tailing ".resources.Messages".resourceKey
- The resource key to look up in the bundle.public static java.lang.String getString(java.lang.String bundleKey, java.lang.String resourceKey, java.lang.String[] arguments)
bundleKey
- Full bundle name, including the tailing ".resources.Messages".resourceKey
- The resource key to look up in the bundle.arguments
- A string array of the arguments to be substituted for any placeholders ({0}, {1} etc.) in the
resource value string.