Uses of Interface
freemarker.template.TemplateScalarModel

Packages that use TemplateScalarModel
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.template This package contains the core API's that most users will use. 
 

Uses of TemplateScalarModel in freemarker.ext.beans
 

Classes in freemarker.ext.beans that implement TemplateScalarModel
 class CollectionModel
          A special case of BeanModel that can wrap Java collections and that implements the TemplateCollectionModel in order to be usable in a <foreach> block.
 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 StringModel
          Subclass of BeanModel that exposes the return value of the Object.toString() method through the TemplateScalarModel interface.
 

Uses of TemplateScalarModel in freemarker.ext.jdom
 

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

Uses of TemplateScalarModel in freemarker.ext.jython
 

Classes in freemarker.ext.jython that implement TemplateScalarModel
 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 TemplateScalarModel in freemarker.template
 

Classes in freemarker.template that implement TemplateScalarModel
 class SimpleScalar
          A simple implementation of the TemplateScalarModel interface, using a String.