Parsing Engine

danbikel.parser.util
Class ParseToSentence

java.lang.Object
  extended by danbikel.parser.util.ParseToSentence

public class ParseToSentence
extends Object

Reads parse trees either from standard input or a specified file, converting them to sentences and printing those sentences on standard output.


Method Summary
static void main(String[] args)
          Reads parse trees either from standard input or a specified file, converting them to sentences and printing those sentences on standard output.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

main

public static void main(String[] args)
Reads parse trees either from standard input or a specified file, converting them to sentences and printing those sentences on standard output.
 usage: [-v|-help|-usage] [-tags] [filename]
         -v|-help|-usage: prints out this message
         -tags: indicates to spit out one S-expression per word, of the form
                 (word (tag))
         filename is the file to be processed (standard input is assumed if
                 this argument is "-" or is not present)
 


Parsing Engine

Author: Dan Bikel.