Gets the default ResourceManager. This is equivalent to
all(ResourceManager.class). It returns the
ResourceManager named "AllRB" located in the same package
ResourceManager class (i.e com.l2fprod.common.util.AllRB).
the default ResourceManager
Gets the ResourceManager associated with clazz.
It looks for a ResourceBundle named against the class name plus
the string "RB". For example, for the com.mypackage.Main, the
ResourceBundle com.mypackage.MainRB will be looked up.
Parameters: clazz - the ResourceManager associated with the class
Gets the String associated with key after having
resolved any nested keys (
ResourceManager.resolve(String) ).
Parameters: key - the key to lookup the String associated with key
Gets the String associated with key after having
resolved any nested keys (
ResourceManager.resolve(String) ) and applied
a formatter using the given args.
Parameters: key - the key to lookup Parameters: args - the arguments to pass to the formatter the String associated with key
Resolves any references to a resource bundle contained in
rbAndProperty. To reference a resource bundle
inside a property use ${com.package.FileRB:key},
this will look for key in the ResourceBundle
com.package.FileRB.
Parameters: rbAndProperty - the resolved resource or rbAndProperty if no resource wasfound
Same as
ResourceManager.resolve(String) but once the value as been
resolved, a MessageFormatter is applied with the given
args.
Parameters: rbAndProperty - Parameters: args - the value for the resource parametrized by args