|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TemplateHashModelEx | |
freemarker.core | This package contains FreeMarker's core parsing/rendering functionality;
most casual users do not need to be aware of the classes in this package,
and can restrict their attention to the freemarker.template
package. |
freemarker.ext.beans | Provides model implementations that allow access to arbitrary Java objects. |
freemarker.ext.jython | Provides model implementations that allow access to arbitrary Jython objects. |
freemarker.ext.servlet | Provides a generic purpose servlet that generates dynamic response using FreeMarker. |
freemarker.template | This package contains the core API's that most users will use. |
Uses of TemplateHashModelEx in freemarker.core |
Classes in freemarker.core that implement TemplateHashModelEx | |
class |
Environment.Namespace
|
Uses of TemplateHashModelEx in freemarker.ext.beans |
Classes in freemarker.ext.beans that implement TemplateHashModelEx | |
class |
ArrayModel
A class that will wrap an arbitrary array into TemplateCollectionModel
and TemplateSequenceModel interfaces. |
class |
BeanModel
A class that will wrap an arbitrary object into TemplateHashModel
interface allowing calls to arbitrary property getters and invocation of
accessible methods on the object from a template using the
object.foo to access properties and object.bar(arg1, arg2) to
invoke methods on it. |
class |
BooleanModel
A class that will wrap instances of Boolean into a
TemplateBooleanModel . |
class |
CollectionModel
A special case of BeanModel that can wrap Java collections
and that implements the TemplateCollectionModel in order to be usable
in a <foreach> block. |
class |
DateModel
Wraps arbitrary subclass of Date into a reflective model.
|
class |
EnumerationModel
A class that adds TemplateModelIterator functionality to the
Enumeration interface implementers.
|
class |
IteratorModel
A class that adds TemplateModelIterator functionality to the
Iterator interface implementers.
|
class |
MapModel
A special case of BeanModel that adds implementation
for TemplateMethodModelEx on map objects that is a shortcut for the
Map.get() method. |
class |
NumberModel
Wraps arbitrary subclass of Number into a reflective model.
|
class |
ResourceBundleModel
A hash model that wraps a resource bundle. |
class |
SimpleMapModel
Model used by BeansWrapper when simpleMapWrapper
mode is enabled. |
class |
StringModel
Subclass of BeanModel that exposes the return value of the Object.toString() method through the TemplateScalarModel
interface. |
Uses of TemplateHashModelEx in freemarker.ext.jython |
Classes in freemarker.ext.jython that implement TemplateHashModelEx | |
class |
JythonHashModel
Model for Jython dictionaries ( PyDictionary
and PyStringMap ).
|
Uses of TemplateHashModelEx in freemarker.ext.servlet |
Classes in freemarker.ext.servlet that implement TemplateHashModelEx | |
class |
HttpRequestHashModel
TemplateHashModel wrapper for a HttpServletRequest attributes. |
class |
HttpRequestParametersHashModel
TemplateHashModel wrapper for a HttpServletRequest parameters. |
Uses of TemplateHashModelEx in freemarker.template |
Classes in freemarker.template that implement TemplateHashModelEx | |
class |
SimpleHash
A simple implementation of the TemplateHashModelEx interface, using an underlying Map or SortedMap . |
Methods in freemarker.template with parameters of type TemplateHashModelEx | |
void |
Configuration.setAllSharedVariables(TemplateHashModelEx hash)
Adds all object in the hash as shared variable to the configuration. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |