| freemarker.debug.DebugModel
All known Subclasses: freemarker.debug.impl.RmiDebugModelImpl,
DebugModel | public interface DebugModel extends Remote(Code) | | Represents the debugger-side mirror of a TemplateModel object, a Template
object, or a Configuration object. The Environment objects are also represented
by instances of this model, although not directly but through a separate
subinterface
DebuggedEnvironment . The interface is a union of
almost all of FreeMarker template models with identical method signatures.
For purposes of optimizing network traffic there are bulk retrieval methods
for sequences and hashes, as well as a
DebugModel.getModelTypes() method that
returns a bit mask of various TYPE_xxx constants flagging which
template models are implemented by the mirrored object.
author: Attila Szegedi version: $Id: DebugModel.java,v 1.2 2003/06/08 00:58:16 herbyderby Exp $ |
TYPE_BOOLEAN | final public static int TYPE_BOOLEAN(Code) | | |
TYPE_COLLECTION | final public static int TYPE_COLLECTION(Code) | | |
TYPE_CONFIGURATION | final public static int TYPE_CONFIGURATION(Code) | | |
TYPE_DATE | final public static int TYPE_DATE(Code) | | |
TYPE_ENVIRONMENT | final public static int TYPE_ENVIRONMENT(Code) | | |
TYPE_HASH | final public static int TYPE_HASH(Code) | | |
TYPE_HASH_EX | final public static int TYPE_HASH_EX(Code) | | |
TYPE_METHOD | final public static int TYPE_METHOD(Code) | | |
TYPE_METHOD_EX | final public static int TYPE_METHOD_EX(Code) | | |
TYPE_NUMBER | final public static int TYPE_NUMBER(Code) | | |
TYPE_SCALAR | final public static int TYPE_SCALAR(Code) | | |
TYPE_SEQUENCE | final public static int TYPE_SEQUENCE(Code) | | |
TYPE_TEMPLATE | final public static int TYPE_TEMPLATE(Code) | | |
TYPE_TRANSFORM | final public static int TYPE_TRANSFORM(Code) | | |
|
|