Uses of Interface
freemarker.template.TemplateMethodModel

Packages that use TemplateMethodModel
freemarker.ext.beans Provides model implementations that allow access to arbitrary Java objects. 
freemarker.ext.jdom Provides adapter for JDOM including support for writing XML fragments, listing nodes, traversal, copying, and filtering, and a full XPath support. 
freemarker.ext.jython Provides model implementations that allow access to arbitrary Jython objects. 
freemarker.ext.rhino Rhino (ECMAScript) support 
freemarker.template This package contains the core API's that most users will use. 
freemarker.template.utility Utility classes that may be used to customize aspects of FreeMarker. 
 

Uses of TemplateMethodModel in freemarker.ext.beans
 

Classes in freemarker.ext.beans that implement TemplateMethodModel
 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 ResourceBundleModel
          A hash model that wraps a resource bundle.
 class SimpleMapModel
          Model used by BeansWrapper when simpleMapWrapper mode is enabled.
 class SimpleMethodModel
          A class that will wrap a reflected method call into a TemplateMethodModel interface.
 

Uses of TemplateMethodModel in freemarker.ext.jdom
 

Classes in freemarker.ext.jdom that implement TemplateMethodModel
 class NodeListModel
          Deprecated. Use NodeModel instead.
 

Uses of TemplateMethodModel in freemarker.ext.jython
 

Classes in freemarker.ext.jython that implement TemplateMethodModel
 class JythonHashModel
          Model for Jython dictionaries (PyDictionary and PyStringMap).
 class JythonModel
          Generic model for arbitrary Jython objects.
 class JythonNumberModel
          Model for Jython numeric objects (PyInteger, PyLong, PyFloat).
 class JythonSequenceModel
          Model for Jython sequence objects (PySequence descendants).
 

Uses of TemplateMethodModel in freemarker.ext.rhino
 

Classes in freemarker.ext.rhino that implement TemplateMethodModel
 class RhinoFunctionModel
           
 

Uses of TemplateMethodModel in freemarker.template
 

Subinterfaces of TemplateMethodModel in freemarker.template
 interface TemplateMethodModelEx
          A subinterface of TemplateMethodModel that acts on models, rather than on strings.
 

Uses of TemplateMethodModel in freemarker.template.utility
 

Classes in freemarker.template.utility that implement TemplateMethodModel
 class Execute
          Gives FreeMarker the the ability to execute external commands.
 class ObjectConstructor
          An object that you can make available in a template to instantiate arbitrary beans-wrapped objects in a template.