Uses of Class
ucot.parser.Word

Packages that use Word
ucot.parser Classes related to parsing read usecases. 
 

Uses of Word in ucot.parser
 

Fields in ucot.parser declared as Word
private  Word Link.to
          The target word this class poitns to.
 

Fields in ucot.parser with type parameters of type Word
private  java.util.List<Word> Sentence.words
           
 

Methods in ucot.parser that return Word
 Word Word.getLinked(java.lang.String name)
           Returns the word that is refered by the first link called by the given name.
 Word Link.getTo()
          Returns the target of the link.
 

Methods in ucot.parser that return types with arguments of type Word
 java.util.List<Word> Sentence.getWords()
           Returns all Words held by this Sentence in a List.
 

Methods in ucot.parser with parameters of type Word
 void Sentence.addWord(Word word)
           Adds the given Word into this Sentence.
 void Link.setTo(Word to)
          Sets the target of the link.
 

Constructors in ucot.parser with parameters of type Word
Link(java.lang.String name, Word to)
          Creates new named link that points to given word.