edu.stanford.nlp.trees
Interface HasFollow

All Known Implementing Classes:
WeightedFollowedTaggedWord

public interface HasFollow

Something that implements the HasFollow interface knows about the characters that follow a token.


Method Summary
 String follow()
          Return the follow value of the label (or null if none).
 void setFollow(String follow)
          Set the follow value for the label (if one is stored).
 

Method Detail

follow

public String follow()
Return the follow value of the label (or null if none).

Returns:
String the follow value for the label

setFollow

public void setFollow(String follow)
Set the follow value for the label (if one is stored).

Parameters:
follow - The follow value for the label


Stanford NLP Group