Package opennlp.tools.parser
Interface GapLabeler
-
- All Known Implementing Classes:
AncoraSpanishHeadRules
,HeadRules
public interface GapLabeler
Represents a labeler for nodes which contain traces so that these traces can be predicted by aParser
.- See Also:
Parser
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
labelGaps(Stack<Constituent> stack)
Labelsconstituents
found in thestack
with gap labels if appropriate.
-
-
-
Method Detail
-
labelGaps
void labelGaps(Stack<Constituent> stack)
Labelsconstituents
found in thestack
with gap labels if appropriate.- Parameters:
stack
- TheStack
of un-completedconstituents
.
-
-