Uses of Interface
edu.udo.cs.wvtool.main.WVTInputList

Packages that use WVTInputList
edu.udo.cs.wvtool.crawler Provides classes and interfaces for using the WebSphinx crawler with the wvtool. 
edu.udo.cs.wvtool.main The main classes, which contain most of the relevant interfaces. 
 

Uses of WVTInputList in edu.udo.cs.wvtool.crawler
 

Classes in edu.udo.cs.wvtool.crawler that implement WVTInputList
 class CrawledInputList
          Input list obtained by crawling from a set of initial URLs.
 

Uses of WVTInputList in edu.udo.cs.wvtool.main
 

Classes in edu.udo.cs.wvtool.main that implement WVTInputList
 class WVTFileInputList
          This class represents a list of information items describing the documents, from which a word list or word vectors should be created.
 

Methods in edu.udo.cs.wvtool.main with parameters of type WVTInputList
 void WVTool.createVectors(WVTInputList input, WVTConfiguration config)
          Deprecated. Please use the method createVectors(WVTInputList input, WVTConfiguration config, int pruneMin, int pruneMax)
 void WVTool.createVectors(WVTInputList input, WVTConfiguration config, int pruneMin, int pruneMax)
          Create a word list and after this word vectors, both from the same input list.
 void WVTool.createVectors(WVTInputList input, WVTConfiguration config, WVTWordList wordList)
          Create word vectors from an input list.
 WVTWordList WVTool.createWordList(WVTInputList input, WVTConfiguration config)
          Create a word list from scrat based on the given texts.
 WVTWordList WVTool.createWordList(WVTInputList input, WVTConfiguration config, java.util.List initialWords, boolean addWords)
          Create a word list based on an existing word list.
 void WVTool.iterateWords(WVTInputList input, WVTConfiguration config, WVToolWordListener listener)
          Process the specified documents using the configured steps and send all encountered words to a listener class.