|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object javax.jdo.spi.I18NHelper
public class I18NHelper
Helper class for constructing messages from bundles. The intended usage of this class is to construct a new instance bound to a bundle, as in
I18NHelper msg = I18NHelper.getInstance("javax.jdo.Bundle");
This call uses the class loader that loaded the I18NHelper class to find
the specified Bundle. The class provides two overloaded getInstance
methods allowing to specify a different class loader:
getInstance(Class cls)
looks for a bundle
called "Bundle.properties" located in the package of the specified class
object and getInstance(String bundleName,ClassLoader loader)
uses the specified class loader to find the bundle.
Subsequently, instance methods can be used to format message strings using the text from the bundle, as in
throw new JDOFatalInternalException (msg.msg("ERR_NoMetadata",
cls.getName()));
Method Summary | |
---|---|
static I18NHelper |
getInstance(java.lang.Class cls)
An instance bound to a bundle. |
static I18NHelper |
getInstance(java.lang.String bundleName)
An instance bound to a bundle. |
static I18NHelper |
getInstance(java.lang.String bundleName,
java.lang.ClassLoader loader)
An instance bound to a bundle. |
java.util.ResourceBundle |
getResourceBundle()
Returns the resource bundle used by this I18NHelper. |
java.lang.String |
msg(java.lang.String messageKey)
Message formatter |
java.lang.String |
msg(java.lang.String messageKey,
boolean arg)
Message formatter |
java.lang.String |
msg(java.lang.String messageKey,
int arg)
Message formatter |
java.lang.String |
msg(java.lang.String messageKey,
java.lang.Object arg1)
Message formatter |
java.lang.String |
msg(java.lang.String messageKey,
java.lang.Object[] args)
Message formatter |
java.lang.String |
msg(java.lang.String messageKey,
java.lang.Object arg1,
java.lang.Object arg2)
Message formatter |
java.lang.String |
msg(java.lang.String messageKey,
java.lang.Object arg1,
java.lang.Object arg2,
java.lang.Object arg3)
Message formatter |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static I18NHelper getInstance(java.lang.String bundleName)
bundleName
- the name of the bundle
public static I18NHelper getInstance(java.lang.Class cls)
null
.
cls
- the class object from which to load the resource bundle
public static I18NHelper getInstance(java.lang.String bundleName, java.lang.ClassLoader loader)
null
.
bundleName
- the name of the bundleloader
- the class loader from which to load the resource
bundle
public java.lang.String msg(java.lang.String messageKey)
messageKey
- the message key
public java.lang.String msg(java.lang.String messageKey, java.lang.Object arg1)
messageKey
- the message keyarg1
- the first argument
public java.lang.String msg(java.lang.String messageKey, java.lang.Object arg1, java.lang.Object arg2)
messageKey
- the message keyarg1
- the first argumentarg2
- the second argument
public java.lang.String msg(java.lang.String messageKey, java.lang.Object arg1, java.lang.Object arg2, java.lang.Object arg3)
messageKey
- the message keyarg1
- the first argumentarg2
- the second argumentarg3
- the third argument
public java.lang.String msg(java.lang.String messageKey, java.lang.Object[] args)
messageKey
- the message keyargs
- the array of arguments
public java.lang.String msg(java.lang.String messageKey, int arg)
messageKey
- the message keyarg
- the argument
public java.lang.String msg(java.lang.String messageKey, boolean arg)
messageKey
- the message keyarg
- the argument
public java.util.ResourceBundle getResourceBundle()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |