Parsing Engine

Uses of Interface
danbikel.parser.DecoderServerRemote

Packages that use DecoderServerRemote
danbikel.parser Provides the core framework of this extensible statistical parsing engine. 
 

Uses of DecoderServerRemote in danbikel.parser
 

Classes in danbikel.parser that implement DecoderServerRemote
 class CachingDecoderServer
          A wrapper object for a DecoderServerRemote instance that provides probability caching.
 class DecoderServer
          Provides probabilities and other resources needed by decoders.
 

Fields in danbikel.parser declared as DecoderServerRemote
protected  DecoderServerRemote Decoder.server
          The server for this decoder.
protected  DecoderServerRemote Parser.server
          The server for the internal Decoder to use when parsing.
protected  DecoderServerRemote CachingDecoderServer.stub
          The stub through which all method invocations on this object will flow.
 

Methods in danbikel.parser with parameters of type DecoderServerRemote
protected  Decoder EMParser.getNewDecoder(int id, DecoderServerRemote server)
          Gets a new Decoder instance that uses the specified DecoderServerRemote instance.
protected  Decoder Parser.getNewDecoder(int id, DecoderServerRemote server)
           
 

Constructors in danbikel.parser with parameters of type DecoderServerRemote
CachingDecoderServer(DecoderServerRemote stub)
          Constructs a new instance around the specified stub.
Decoder(int id, DecoderServerRemote server)
          Constructs a new decoder that will use the specified DecoderServer to get all information and probabilities required for decoding (parsing).
EMDecoder(int id, DecoderServerRemote server)
          Constructs a new decoder that will use the specified DecoderServer to get all information and probabilities required for decoding (parsing).
EMParser(DecoderServerRemote server)
          Constructs a new EM parsing client using the specified DecoderServerRemote instance for probability lookups and for other resources needed by the decoder.
Parser(DecoderServerRemote server)
          Constructs a new parsing client where the internal Decoder will use the specified server.
 


Parsing Engine

Author: Dan Bikel.