Uses of Class
freemarker.template.WrappingTemplateModel
-
Packages that use WrappingTemplateModel Package Description freemarker.core The seldom used or advanced parts of the fundamental FreeMarker API, compared tofreemarker.template
.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.servlet Servlet for legacy "Model 2" frameworks that allows using FreeMarker templates instead of JSP as the MVC View (see in the Manual).freemarker.template The fundamental, most commonly used API-s of FreeMarker; start withConfiguration
(see also the Getting Stared in the Manual.) -
-
Uses of WrappingTemplateModel in freemarker.core
Subclasses of WrappingTemplateModel in freemarker.core Modifier and Type Class Description class
Environment.Namespace
-
Uses of WrappingTemplateModel in freemarker.ext.beans
Subclasses of WrappingTemplateModel in freemarker.ext.beans Modifier and Type Class Description class
SimpleMapModel
Model used byBeansWrapper
when simpleMapWrapper mode is enabled. -
Uses of WrappingTemplateModel in freemarker.ext.servlet
Subclasses of WrappingTemplateModel in freemarker.ext.servlet Modifier and Type Class Description class
AllHttpScopesHashModel
An extension of SimpleHash that looks up keys in the hash, then in the request, session, and servlet context scopes. -
Uses of WrappingTemplateModel in freemarker.template
Subclasses of WrappingTemplateModel in freemarker.template Modifier and Type Class Description class
DefaultArrayAdapter
Adapts anarray
of a non-primitive elements to the correspondingTemplateModel
interface(s), most importantly toTemplateHashModelEx
.class
DefaultIteratorAdapter
Adapts anIterator
to the correspondingTemplateModel
interface(s), most importantly toTemplateCollectionModel
.class
DefaultListAdapter
Adapts aList
to the correspondingTemplateModel
interface(s), most importantly toTemplateSequenceModel
.class
DefaultMapAdapter
Adapts aMap
to the correspondingTemplateModel
interface(s), most importantly toTemplateHashModelEx
.class
DefaultNonListCollectionAdapter
Experimental - subject to change: Adapts a non-List
JavaCollection
to the correspondingTemplateModel
interface(s), most importantly toTemplateCollectionModelEx
.class
SimpleCollection
A simple implementation ofTemplateCollectionModel
.class
SimpleHash
A simple implementation of theTemplateHashModelEx
interface, using its own underlyingMap
orSortedMap
for storing the hash entries.class
SimpleList
Deprecated.Use SimpleSequence instead.class
SimpleSequence
A simple implementation of theTemplateSequenceModel
interface, using its own underlyingList
for storing the list items.
-