Uses of Interface
freemarker.template.utility.RichObjectWrapper
-
Packages that use RichObjectWrapper Package Description freemarker.ext.beans Thedefault 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 alternativeObjectWrapper
.freemarker.ext.rhino Exposes Rhino (ECMAScript) objects to templates.freemarker.template The fundamental, most commonly used API-s of FreeMarker; start withConfiguration
(see also the Getting Stared in the Manual.) -
-
Uses of RichObjectWrapper in freemarker.ext.beans
Classes in freemarker.ext.beans that implement RichObjectWrapper Modifier and Type Class Description class
BeansWrapper
ObjectWrapper
that is able to expose the Java API of arbitrary Java objects. -
Uses of RichObjectWrapper in freemarker.ext.rhino
Classes in freemarker.ext.rhino that implement RichObjectWrapper Modifier and Type Class Description class
RhinoWrapper
-
Uses of RichObjectWrapper in freemarker.template
Classes in freemarker.template that implement RichObjectWrapper Modifier and Type Class Description class
DefaultObjectWrapper
The default implementation of theObjectWrapper
interface.class
SimpleObjectWrapper
A restricted object wrapper that will not expose arbitrary object, just those that directly correspond to theTemplateModel
sub-interfaces (String
,Map
and such).Methods in freemarker.template with parameters of type RichObjectWrapper Modifier and Type Method Description static DefaultListAdapter
DefaultListAdapter. adapt(List list, RichObjectWrapper wrapper)
Factory method for creating new adapter instances.
-