freemarker.ext.beans
Class StringModel
java.lang.Object
freemarker.ext.beans.BeanModel
freemarker.ext.beans.StringModel
- All Implemented Interfaces:
- WrapperTemplateModel, AdapterTemplateModel, TemplateHashModel, TemplateHashModelEx, TemplateModel, TemplateScalarModel
- Direct Known Subclasses:
- CollectionModel, MapModel
public class StringModel
- extends BeanModel
- implements TemplateScalarModel
Subclass of BeanModel
that exposes the return value of the Object.toString()
method through the TemplateScalarModel
interface.
- Version:
- $Id: StringModel.java,v 1.9 2003/06/03 13:21:33 szegedia Exp $
- Author:
- Attila Szegedi
Constructor Summary |
StringModel(Object object,
BeansWrapper wrapper)
Creates a new model that wraps the specified object with BeanModel + scalar
functionality. |
Methods inherited from class freemarker.ext.beans.BeanModel |
get, getAdaptedObject, getWrappedObject, hasPlainGetMethod, invokeGenericGet, isEmpty, keys, keySet, size, toString, unwrap, values, wrap |
StringModel
public StringModel(Object object,
BeansWrapper wrapper)
- Creates a new model that wraps the specified object with BeanModel + scalar
functionality.
- Parameters:
object
- the object to wrap into a model.wrapper
- the BeansWrapper
associated with this model.
Every model has to have an associated BeansWrapper
instance. The
model gains many attributes from its wrapper, including the caching
behavior, method exposure level, method-over-item shadowing policy etc.
getAsString
public String getAsString()
- Returns the result of calling
Object.toString()
on the wrapped
object.
- Specified by:
getAsString
in interface TemplateScalarModel