ABL4J (Alignment Based Learning for Java) - 0.9.7

Uses of Interface
org.schwiebert.abl4j.data.IWord

Packages that use IWord
org.schwiebert.abl4j.data   
org.schwiebert.abl4j.data.impl.abl   
org.schwiebert.abl4j.io   
 

Uses of IWord in org.schwiebert.abl4j.data
 

Methods in org.schwiebert.abl4j.data that return IWord
 IWord<T> ISentence.get(int index)
          Returns the IWord at the given index
static IWord DataFactory.getWord(Object data)
          This procedure associates to each unique space and newline delimited input string, a word, a unique number for internal representation and stores this in the Word class.
static IWord DataFactory.newWord(int index)
          Creates a new word which will be registered within a WordMapping.
 

Methods in org.schwiebert.abl4j.data that return types with arguments of type IWord
 List<IWord<T>> ISentence.getWords()
          Returns the list of all IWords in this sentence.
 List<IWord<T>> IConstituent.getWords()
          Returns the list of words the constituent contains.
 List<IWord<T>> ISentence.subList(int begin, int end)
          Returns the subList of IWord from begin to end, as defined in List.subList(int, int).
 

Methods in org.schwiebert.abl4j.data with parameters of type IWord
 void ITree.addWord(IWord<T> w)
          Adds IWord w to the list of words, as in List.add(Object)
 int ISentence.indexOf(IWord<T> elem, int index)
          Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method.
 

Method parameters in org.schwiebert.abl4j.data with type arguments of type IWord
 void ITree.addAllWords(List<IWord<T>> otherWords)
          Adds the given list of words to the list of words already contained in the ITree, as in List.addAll(java.util.Collection)
 void ISentence.addWords(List<IWord<T>> words)
          Adds all IWord stored in words to this sentence, as in List.addAll(java.util.Collection).
 void ITree.changeSentence(List<IWord<T>> words)
          Removes all words currently contained in this Tree, and adds all Word objects in words.
 

Uses of IWord in org.schwiebert.abl4j.data.impl.abl
 

Classes in org.schwiebert.abl4j.data.impl.abl that implement IWord
 class Word<T>
          This class is used to store a "word".
 

Methods in org.schwiebert.abl4j.data.impl.abl that return types with arguments of type IWord
 List<IWord<T>> Sentence.getWords()
           
 List<IWord<T>> Constituent.getWords()
           
 

Methods in org.schwiebert.abl4j.data.impl.abl with parameters of type IWord
 void Tree.addWord(IWord<T> w)
           
 int Sentence.indexOf(IWord<T> elem, int index)
           
 

Method parameters in org.schwiebert.abl4j.data.impl.abl with type arguments of type IWord
 void Tree.addAllWords(List<IWord<T>> otherWords)
           
 void Sentence.addWords(List<IWord<T>> words)
           
 void Tree.changeSentence(List<IWord<T>> words)
           
 

Uses of IWord in org.schwiebert.abl4j.io
 

Methods in org.schwiebert.abl4j.io that return IWord
private  IWord TreebankReader.readWord(String currentLine)
          Parses a single IWord from String currentLine.
 

Methods in org.schwiebert.abl4j.io with parameters of type IWord
 void XMLVisitor.visitWord(IWord word, boolean hasNext)
           
 void PlainTextSerializationVisitor.visitWord(IWord word, boolean hasNext)
           
 void ISerializationVisitor.visitWord(IWord word, boolean hasNext)
           
 


ABL4J (Alignment Based Learning for Java) - 0.9.7

© 2007 Stephan Schwiebert