Package opennlp.tools.parser.treeinsert
Class CheckContextGenerator
java.lang.Object
opennlp.tools.parser.AbstractContextGenerator
opennlp.tools.parser.treeinsert.CheckContextGenerator
Generates predictive context for deciding when a constituent is complete.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionCheckContextGenerator(Set<String> punctSet) Instantiates aCheckContextGeneratorfor making decisions using apunctSet.
- 
Method SummaryModifier and TypeMethodDescriptionString[]getContext(Object o) String[]getContext(Parse parent, Parse[] constituents, int index, boolean trimFrontier) Finds the predictive context used to determine how constituent at the specifiedindexshould be combined with aparentconstituent.
- 
Constructor Details- 
CheckContextGeneratorInstantiates aCheckContextGeneratorfor making decisions using apunctSet.- Parameters:
- punctSet- A set of punctuation symbols to be used during context generation.
 
 
- 
- 
Method Details- 
getContext
- 
getContextFinds the predictive context used to determine how constituent at the specifiedindexshould be combined with aparentconstituent.- Parameters:
- parent- The- parentelement.
- constituents- The- constituentswhich have yet to be combined into new constituents.
- index- The index of the constituent which is being considered.
- trimFrontier- Whether the frontier should be trimmed, or not.
- Returns:
- The context for deciding whether a new constituent should be created.
 
 
-