| Package | Description |
|---|---|
| edu.nyu.jet.lisp |
The Lisp package includes the basic classes for symbol manipulation
in Jet: literals, variables, and feature sets.
|
| edu.nyu.jet.pat |
The Pat package encapsulates the basic pattern application
mechanism of Jet, sets of pattern/action rules which can be applied
to a document to add or modify annotations on the document. The external
form of the pattern language is described below; the classes used
to encode these patterns are summarized separately.
|
| Constructor and Description |
|---|
FeatureSet(StreamTokenizer tok,
boolean allowVariables,
char endChar)
This constructor reads a feature set from StreamTokenizer tok.
|
| Constructor and Description |
|---|
AddFeaturesAction(StreamTokenizer tok)
creates an AddFeaturesAction from the input processed by StreamTokenizer
tok, which should have the form
addfeatures [type feature=value feature=value ...] to annotationVariable |
FeatureTest(StreamTokenizer tok)
creates a FeatureTest from the next tokens in tok.
|
NewAnnotationAction(StreamTokenizer tok)
creates a NewAnnotationAction from the input processed by StreamTokenizer
tok, which should have the form
add [type feature=value feature=value ...] or add [type feature=value feature=value ...] over spanVariable |
PrintAction(StreamTokenizer tok)
constructs a new PrintAction by reading from StreamTokenizer tok.
|
StringExpression(StreamTokenizer tok)
creates a new StringExpression from the input read by StreamTokenizer
tok, which should consist of a sequence of strings and
variable names, separated by "+".
|
WriteAction(StreamTokenizer tok)
constructs a new WriteAction by reading from StreamTokenizer tok.
|
Copyright © 2016 New York University. All rights reserved.