Parsing Engine

Uses of Interface
danbikel.switchboard.Server

Packages that use Server
danbikel.parser Provides the core framework of this extensible statistical parsing engine. 
danbikel.switchboard Provides classes to implement a distributed client-server environment, with a central switchboard responsible for assigning clients to servers and for doling out objects to clients for processing. 
 

Uses of Server in danbikel.parser
 

Subinterfaces of Server in danbikel.parser
 interface DecoderServerRemote
          Specifies all methods necessary for a decoder client to get its settings and top-level probabilities from a server object.
 

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

Uses of Server in danbikel.switchboard
 

Classes in danbikel.switchboard that implement Server
 class AbstractServer
          Provides a convenient default implementation of the Server interface, allowing subclasses to focus solely on the services they will provide to clients.
 

Fields in danbikel.switchboard declared as Server
protected  Server AbstractClient.server
          The server assigned to this client.
 

Methods in danbikel.switchboard that return Server
 Server Switchboard.getServer(int clientId)
           
 Server SwitchboardRemote.getServer(int clientId)
          Returns a Server for use by a client.
 Server Switchboard.getServer(int clientId, int serverId)
           
 Server SwitchboardRemote.getServer(int clientId, int serverId)
          Returns a Server associated with the specified server ID to the requesting client.
 

Methods in danbikel.switchboard with parameters of type Server
 int Switchboard.register(Server server)
           
 int SwitchboardRemote.register(Server server)
          Register a server with the switchboard.
 


Parsing Engine

Author: Dan Bikel.