| Package | Description |
|---|---|
| edu.nyu.jet |
The root Jet package provides the methods for top-level system
control and for the Console.
|
| edu.nyu.jet.parser |
The Parser package includes several types of parsers (top-down, bottom-up,
and chart).
|
| Modifier and Type | Field and Description |
|---|---|
protected static Grammar |
JetTest.gram |
| Modifier and Type | Method and Description |
|---|---|
static Vector |
Parsers.BUParse(Document doc,
int posn,
int end,
Grammar gram)
apply a bottom-up ('immediate constituent') parser to characters
posn to end of Document using grammar gram.
|
static Vector |
Parsers.chartParse(Document doc,
int posn,
int end,
Grammar gram)
apply a top-down active chart parser to characters
posn to end of Document doc using grammar gram.
|
static Vector |
Parsers.parse(Document doc,
int posn,
int end,
Grammar gram)
parse characters posn to end of Document using
grammar gram.
|
static boolean |
Parsers.recognize(Document doc,
int posn,
int end,
Grammar gram)
apply a top-down recognizer to characters posn to end
of Document using grammar gram.
|
static Vector |
Parsers.TDParse(Document doc,
int posn,
int end,
Grammar gram)
apply a top-down backtracking parser to characters posn to
end of Document using grammar gram.
|
Copyright © 2016 New York University. All rights reserved.