Serialized Form


Package freemarker.ext.servlet

Class freemarker.ext.servlet.FreemarkerServlet implements Serializable

Serialized Fields

cache

TemplateCache cache

templatePath

java.lang.String templatePath

defaultEncoding

java.lang.String defaultEncoding

nocache

boolean nocache

debug

boolean debug


Package freemarker.ext.util

Class freemarker.ext.util.IdentityHashMap implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reconstitute the IdentityHashMap instance from a stream (i.e., deserialize it).

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Save the state of the IdentityHashMap instance to a stream (i.e., serialize it).
Serial Data:
The capacity of the IdentityHashMap (the length of the bucket array) is emitted (int), followed by the size of the IdentityHashMap (the number of key-value mappings), followed by the key (Object) and value (Object) for each key-value mapping represented by the IdentityHashMap The key-value mappings are emitted in no particular order.
Serialized Fields

threshold

int threshold
The table is rehashed when its size exceeds this threshold. (The value of this field is (int)(capacity * loadFactor).)
 

loadFactor

float loadFactor
The load factor for the hashtable.
 


Package freemarker.template

Class freemarker.template.SimpleHash implements Serializable

Serialized Fields

hash

java.util.HashMap hash
the HashMap that this SimpleHash wraps.

locale

java.util.Locale locale

Class freemarker.template.SimpleList implements Serializable

Class freemarker.template.SimpleNumber implements Serializable

Serialized Fields

value

java.lang.Number value
the value of this SimpleNumber

format

java.text.NumberFormat format

Class freemarker.template.SimpleScalar implements Serializable

Serialized Fields

stringValue

java.lang.String stringValue
the value of this SimpleScalar if it wraps a String.

booleanValue

boolean booleanValue
the value of this SimpleScalar if it wraps a boolean.

useBoolean

boolean useBoolean
true if this SimpleScalar wraps a boolean value.

Class freemarker.template.SimpleSequence implements Serializable

Serialized Fields

list

java.util.List list
The List that this SimpleSequence wraps.

Class freemarker.template.TemplateException implements Serializable

Serialized Fields

causeException

java.lang.Exception causeException
The underlying cause of this exception, if any

Class freemarker.template.TemplateModelException implements Serializable


Package freemarker.template.compiler

Class freemarker.template.compiler.NonNumericalException implements Serializable

Class freemarker.template.compiler.ParseException implements Serializable

Serialized Fields

specialConstructor

boolean specialConstructor
This variable determines which constructor was used to create this object and thereby affects the semantics of the "getMessage" method (see below).

currentToken

Token currentToken
This is the last token that has been consumed successfully. If this object has been created due to a parse error, the token followng this token will (therefore) be the first error token.

expectedTokenSequences

int[][] expectedTokenSequences
Each entry in this array is an array of integers. Each array of integers represents a sequence of tokens (by their ordinal values) that is expected at this point of the parse.

tokenImage

java.lang.String[] tokenImage
This is a reference to the "tokenImage" array of the generated parser within which the parse error occurred. This array is defined in the generated ...Constants interface.

eol

java.lang.String eol
The end of line string for this machine.

Class freemarker.template.compiler.StopException implements Serializable

Class freemarker.template.compiler.TokenMgrError implements Serializable

Serialized Fields

errorCode

int errorCode
Indicates the reason why the exception is thrown. It will have one of the above 4 values.