Parsing Engine

Uses of Interface
danbikel.switchboard.ObjectWriter

Packages that use ObjectWriter
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 ObjectWriter in danbikel.parser
 

Classes in danbikel.parser that implement ObjectWriter
 class EventCountsWriter
          Provides a method to write CountsTable objects containing counts of TrainerEvent objects to a file or an output stream.
 

Methods in danbikel.parser that return ObjectWriter
 ObjectWriter EventCountsWriterFactory.get(OutputStream os, boolean append, boolean emptyFile)
           
 ObjectWriter EventCountsWriterFactory.get(OutputStream os, String encoding, int bufSize, boolean append, boolean emptyFile)
           
 ObjectWriter EventCountsWriterFactory.get(String filename, String encoding, int bufSize, boolean append)
           
 

Uses of ObjectWriter in danbikel.switchboard
 

Classes in danbikel.switchboard that implement ObjectWriter
 class TextObjectWriter
          A simple ObjectWriter that merely prints out objects' string representations (as determined by their toString methods) to an underlying character stream (Writer) followed by a newline.
 

Methods in danbikel.switchboard that return ObjectWriter
 ObjectWriter ObjectWriterFactory.get(OutputStream os, boolean append, boolean emptyFile)
          Returns a newly-constructed ObjectWriter using the specified stream.
 ObjectWriter TextObjectWriterFactory.get(OutputStream os, boolean append, boolean emptyFile)
           
 ObjectWriter ObjectWriterFactory.get(OutputStream os, String encoding, int bufSize, boolean append, boolean emptyFile)
          Returns a newly-constructed ObjectWriter using the specified stream.
 ObjectWriter TextObjectWriterFactory.get(OutputStream os, String encoding, int bufSize, boolean append, boolean emptyFile)
           
 ObjectWriter ObjectWriterFactory.get(String filename, String encoding, int bufSize, boolean append)
          Returns a newly-constructed ObjectWriter using the specified stream.
 ObjectWriter TextObjectWriterFactory.get(String filename, String encoding, int bufSize, boolean append)
           
 


Parsing Engine

Author: Dan Bikel.