Package | Description |
---|---|
freemarker.ext.beans |
The
default object wrapper of FreeMarker uses
this to expose Java Beans and POJO-s to templates, but it can also be used in itself as a
better alternative ObjectWrapper . |
freemarker.ext.rhino |
Exposes Rhino (ECMAScript) objects to templates.
|
freemarker.template |
The fundamental, most commonly used API-s of FreeMarker;
start with
Configuration (see also the
Getting Stared in the Manual.) |
Modifier and Type | Field | Description |
---|---|---|
protected BeansWrapper |
BeanModel.wrapper |
Modifier and Type | Method | Description |
---|---|---|
BeansWrapper |
BeansWrapperBuilder.build() |
Returns a
BeansWrapper instance that matches the settings of this builder. |
static BeansWrapper |
BeansWrapper.getDefaultInstance() |
Deprecated.
Use
BeansWrapperBuilder instead. The instance returned here is not read-only, so it's
dangerous to use. |
Constructor | Description |
---|---|
ArrayModel(java.lang.Object array,
BeansWrapper wrapper) |
Creates a new model that wraps the specified array object.
|
BeanModel(java.lang.Object object,
BeansWrapper wrapper) |
Creates a new model that wraps the specified object.
|
BooleanModel(java.lang.Boolean bool,
BeansWrapper wrapper) |
|
CollectionModel(java.util.Collection collection,
BeansWrapper wrapper) |
Creates a new model that wraps the specified collection object.
|
DateModel(java.util.Date date,
BeansWrapper wrapper) |
Creates a new model that wraps the specified date object.
|
EnumerationModel(java.util.Enumeration enumeration,
BeansWrapper wrapper) |
Creates a new model that wraps the specified enumeration object.
|
IteratorModel(java.util.Iterator iterator,
BeansWrapper wrapper) |
Creates a new model that wraps the specified iterator object.
|
MapModel(java.util.Map map,
BeansWrapper wrapper) |
Creates a new model that wraps the specified map object.
|
NumberModel(java.lang.Number number,
BeansWrapper wrapper) |
Creates a new model that wraps the specified number object.
|
ResourceBundleModel(java.util.ResourceBundle bundle,
BeansWrapper wrapper) |
|
SimpleMapModel(java.util.Map map,
BeansWrapper wrapper) |
|
StringModel(java.lang.Object object,
BeansWrapper wrapper) |
Creates a new model that wraps the specified object with BeanModel + scalar
functionality.
|
Modifier and Type | Class | Description |
---|---|---|
class |
RhinoWrapper |
Constructor | Description |
---|---|
RhinoFunctionModel(org.mozilla.javascript.Function function,
org.mozilla.javascript.Scriptable fnThis,
BeansWrapper wrapper) |
|
RhinoScriptableModel(org.mozilla.javascript.Scriptable scriptable,
BeansWrapper wrapper) |
Modifier and Type | Class | Description |
---|---|---|
class |
DefaultObjectWrapper |
The default implementation of the
ObjectWrapper interface. |
class |
SimpleObjectWrapper |
A restricted object wrapper that will not expose arbitrary object, just those that directly correspond to the
TemplateModel sub-interfaces (String , Map and such). |