Uses of Interface
org.directwebremoting.json.parse.JsonDecoder

Packages that use JsonDecoder
org.directwebremoting.json.parse   
org.directwebremoting.json.parse.impl   
org.directwebremoting.jsonrpc.io   
 

Uses of JsonDecoder in org.directwebremoting.json.parse
 

Methods in org.directwebremoting.json.parse with parameters of type JsonDecoder
 java.lang.Object JsonParser.parse(java.io.Reader input, JsonDecoder decoder)
          Walk along the json input calling methods on decoder as we discover new tokens in the input.
 

Uses of JsonDecoder in org.directwebremoting.json.parse.impl
 

Classes in org.directwebremoting.json.parse.impl that implement JsonDecoder
 class DebuggingJsonDecoder<T>
          A proxy implementation of JsonDecoder which simply passes the calls on to another JsonDecoder, but outputs debug logging what happened while the parse was happening.
 class IgnoreJsonDecoder
          A JsonDecoder that doesn't do anything, which is useful for validations that don't need to get any data, just check it's validity.
 class ReflectionJsonDecoder
          A JsonDecoder that de-serializes the data into an existing set of objects.
 class SimpleJsonDecoder
           
 class StatefulJsonDecoder
          A stateful implementation of JsonDecoder where we track the stack of objects and allow a subclass to have a simpler set of things to do
 

Constructors in org.directwebremoting.json.parse.impl with parameters of type JsonDecoder
DebuggingJsonDecoder(JsonDecoder proxy)
           
 

Uses of JsonDecoder in org.directwebremoting.jsonrpc.io
 

Classes in org.directwebremoting.jsonrpc.io that implement JsonDecoder
 class JsonRpcCallsJsonDecoder
          A JsonDecoder that creates a JsonRpcCalls structure.
 


Copyright ยจ 2008