public class ResourceBundleModel extends BeanModel implements TemplateMethodModelEx
A hash model that wraps a resource bundle. Makes it convenient to store
localized content in the data model. It also acts as a method model that will
take a resource key and arbitrary number of arguments and will apply
MessageFormat with arguments on the string represented by the key.
Typical usages:
NOTHING| Constructor and Description |
|---|
ResourceBundleModel(java.util.ResourceBundle bundle,
BeansWrapper wrapper) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
exec(java.util.List arguments)
Takes first argument as a resource key, looks up a string in resource bundle
with this key, then applies a MessageFormat.format on the string with the
rest of the arguments.
|
java.lang.String |
format(java.lang.String key,
java.lang.Object[] params)
Provides direct access to caching format engine from code (instead of from script).
|
java.util.ResourceBundle |
getBundle() |
protected TemplateModel |
invokeGenericGet(java.util.Map keyMap,
java.lang.Class clazz,
java.lang.String key)
Overridden to invoke the getObject method of the resource bundle.
|
boolean |
isEmpty()
Returns true if this bundle contains no objects.
|
protected java.util.Set |
keySet()
Helper method to support TemplateHashModelEx.
|
int |
size() |
get, getAdaptedObject, getWrappedObject, hasPlainGetMethod, keys, toString, unwrap, values, wrappublic ResourceBundleModel(java.util.ResourceBundle bundle,
BeansWrapper wrapper)
protected TemplateModel invokeGenericGet(java.util.Map keyMap, java.lang.Class clazz, java.lang.String key) throws TemplateModelException
invokeGenericGet in class BeanModelTemplateModelExceptionpublic boolean isEmpty()
isEmpty in interface TemplateHashModelisEmpty in class BeanModelpublic int size()
size in interface TemplateHashModelExsize in class BeanModelprotected java.util.Set keySet()
BeanModelpublic java.lang.Object exec(java.util.List arguments)
throws TemplateModelException
exec in interface TemplateMethodModelexec in interface TemplateMethodModelExarguments - a List of TemplateModel-s,
containing the arguments passed to the method. If the implementation absolutely wants
to operate on POJOs, it can use the static utility methods in the DeepUnwrap
class to easily obtain them. However, unwrapping is not always possible (or not perfectly), and isn't always
efficient, so it's recommended to use the original TemplateModel value as much as possible.null. If the returned value
does not implement TemplateModel, it will be automatically
wrapped using the environment's
object wrapper.TemplateModelExceptionpublic java.lang.String format(java.lang.String key,
java.lang.Object[] params)
throws java.util.MissingResourceException
java.util.MissingResourceExceptionpublic java.util.ResourceBundle getBundle()