Uses of Class
freemarker.ext.beans.BeansWrapper

Packages that use BeansWrapper
freemarker.ext.beans Provides model implementations that allow access to arbitrary Java objects. 
freemarker.ext.rhino Rhino (ECMAScript) support 
freemarker.template This package contains the core API's that most users will use. 
 

Uses of BeansWrapper in freemarker.ext.beans
 

Fields in freemarker.ext.beans declared as BeansWrapper
protected  BeansWrapper BeanModel.wrapper
           
 

Methods in freemarker.ext.beans that return BeansWrapper
static BeansWrapper BeansWrapper.getDefaultInstance()
          Returns the default instance of the wrapper.
 

Constructors in freemarker.ext.beans with parameters of type BeansWrapper
ArrayModel(java.lang.Object array, BeansWrapper wrapper)
          Creates a new model that wraps the specified array object.
BeanModel(java.lang.Object object, BeansWrapper wrapper)
          Creates a new model that wraps the specified object.
BooleanModel(java.lang.Boolean bool, BeansWrapper wrapper)
           
CollectionModel(java.util.Collection collection, BeansWrapper wrapper)
          Creates a new model that wraps the specified collection object.
DateModel(java.util.Date date, BeansWrapper wrapper)
          Creates a new model that wraps the specified date object.
EnumerationModel(java.util.Enumeration enumeration, BeansWrapper wrapper)
          Creates a new model that wraps the specified enumeration object.
IteratorModel(java.util.Iterator iterator, BeansWrapper wrapper)
          Creates a new model that wraps the specified iterator object.
MapModel(java.util.Map map, BeansWrapper wrapper)
          Creates a new model that wraps the specified map object.
NumberModel(java.lang.Number number, BeansWrapper wrapper)
          Creates a new model that wraps the specified number object.
ResourceBundleModel(java.util.ResourceBundle bundle, BeansWrapper wrapper)
           
SimpleMapModel(java.util.Map map, BeansWrapper wrapper)
           
StringModel(java.lang.Object object, BeansWrapper wrapper)
          Creates a new model that wraps the specified object with BeanModel + scalar functionality.
 

Uses of BeansWrapper in freemarker.ext.rhino
 

Subclasses of BeansWrapper in freemarker.ext.rhino
 class RhinoWrapper
           
 

Constructors in freemarker.ext.rhino with parameters of type BeansWrapper
RhinoFunctionModel(org.mozilla.javascript.Function function, org.mozilla.javascript.Scriptable fnThis, BeansWrapper wrapper)
           
RhinoScriptableModel(org.mozilla.javascript.Scriptable scriptable, BeansWrapper wrapper)
           
 

Uses of BeansWrapper in freemarker.template
 

Subclasses of BeansWrapper in freemarker.template
 class DefaultObjectWrapper
          The default implementation of the ObjectWrapper interface.
 class SimpleObjectWrapper
          The default implementation of the ObjectWrapper interface.