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.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 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.ext.rhino
 

Classes in freemarker.ext.rhino that implement TemplateScalarModel
 class RhinoFunctionModel
           
 class RhinoScriptableModel
           
 

Uses of TemplateScalarModel in freemarker.template
 

Classes in freemarker.template that implement TemplateScalarModel
 class LocalizedString
          An abstract base class for scalars that vary by locale.
 class ResourceBundleLocalizedString
          A concrete implementation of LocalizedString that gets a localized string from a ResourceBundle
 class SimpleScalar
          A simple implementation of the TemplateScalarModel interface, using a String.
 

Uses of TemplateScalarModel in freemarker.template.utility
 

Fields in freemarker.template.utility declared as TemplateScalarModel
static TemplateScalarModel Constants.EMPTY_STRING