Uses of Interface
freemarker.template.ObjectWrapperAndUnwrapper
-
Packages that use ObjectWrapperAndUnwrapper Package Description freemarker.ext.beans The default object wrapper of FreeMarker uses this to expose Java Beans and POJO-s to templates.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 Started in the Manual.)freemarker.template.utility Various classes used by core FreeMarker code but might be useful outside of it too. -
-
Uses of ObjectWrapperAndUnwrapper in freemarker.ext.beans
Classes in freemarker.ext.beans that implement ObjectWrapperAndUnwrapper Modifier and Type Class Description class
BeansWrapper
ObjectWrapper
that is able to expose the Java API of arbitrary Java objects. -
Uses of ObjectWrapperAndUnwrapper in freemarker.ext.rhino
Classes in freemarker.ext.rhino that implement ObjectWrapperAndUnwrapper Modifier and Type Class Description class
RhinoWrapper
-
Uses of ObjectWrapperAndUnwrapper in freemarker.template
Classes in freemarker.template that implement ObjectWrapperAndUnwrapper 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 ObjectWrapperAndUnwrapper Modifier and Type Method Description static DefaultArrayAdapter
DefaultArrayAdapter. adapt(java.lang.Object array, ObjectWrapperAndUnwrapper wrapper)
Factory method for creating new adapter instances. -
Uses of ObjectWrapperAndUnwrapper in freemarker.template.utility
Subinterfaces of ObjectWrapperAndUnwrapper in freemarker.template.utility Modifier and Type Interface Description interface
RichObjectWrapper
Experimental - subject to change: Union of the interfaces that a typical feature richObjectWrapper
is expected to implement.
-