Uses of Class
edu.udo.cs.wvtool.main.WVTDocumentInfo

Packages that use WVTDocumentInfo
edu.udo.cs.wvtool.config Provides classes connected with the dynamic configuration of the tool. 
edu.udo.cs.wvtool.generic.charmapper Provides classes and interfaces related to char conversion. 
edu.udo.cs.wvtool.generic.inputfilter Provides classes and interfaces for document input filters. 
edu.udo.cs.wvtool.generic.loader Provides classes and interfaces for document loading. 
edu.udo.cs.wvtool.generic.stemmer Provides classes and interfaces for stemmers. 
edu.udo.cs.wvtool.generic.tokenizer Provides classes and interfaces for tokenization. 
edu.udo.cs.wvtool.generic.vectorcreation Provides classes and interfaces for vector creation. 
edu.udo.cs.wvtool.generic.wordfilter Provides classes and interfaces for the filtering of words. 
edu.udo.cs.wvtool.main The main classes, which contain most of the relevant interfaces. 
edu.udo.cs.wvtool.wordlist Provides classes connected with the creation/modification of the word list. 
 

Uses of WVTDocumentInfo in edu.udo.cs.wvtool.config
 

Methods in edu.udo.cs.wvtool.config with parameters of type WVTDocumentInfo
 java.lang.Object WVTConfiguration.getComponentForStep(java.lang.String step, WVTDocumentInfo info)
          Get the object to use in a given step according to given document informations.
 java.lang.Object WVTConfigurationFact.getMatchingComponent(WVTDocumentInfo d)
           
 java.lang.Object WVTConfigurationRule.getMatchingComponent(WVTDocumentInfo d)
          Get a component object for a given document info
 

Uses of WVTDocumentInfo in edu.udo.cs.wvtool.generic.charmapper
 

Methods in edu.udo.cs.wvtool.generic.charmapper with parameters of type WVTDocumentInfo
 java.io.Reader WVTCharConverter.convertChars(java.io.Reader source, WVTDocumentInfo d)
          Convert characters.
 java.io.Reader DummyCharConverter.convertChars(java.io.Reader source, WVTDocumentInfo d)
           
 

Uses of WVTDocumentInfo in edu.udo.cs.wvtool.generic.inputfilter
 

Methods in edu.udo.cs.wvtool.generic.inputfilter with parameters of type WVTDocumentInfo
 java.io.Reader XMLInputFilter.convertToPlainText(java.io.InputStream source, WVTDocumentInfo d)
           
 java.io.Reader WVTInputFilter.convertToPlainText(java.io.InputStream source, WVTDocumentInfo d)
          Convert the input stream to plain natural text.
 java.io.Reader TextInputFilter.convertToPlainText(java.io.InputStream source, WVTDocumentInfo d)
           
 

Uses of WVTDocumentInfo in edu.udo.cs.wvtool.generic.loader
 

Methods in edu.udo.cs.wvtool.generic.loader with parameters of type WVTDocumentInfo
 void UniversalLoader.close(WVTDocumentInfo d)
           
 void WVTDocumentLoader.close(WVTDocumentInfo d)
          Close the resource from which the given document has been read.
 void SourceAsTextLoader.close(WVTDocumentInfo d)
          Close the resource from which the given document has been read.
 java.io.InputStream UniversalLoader.loadDocument(WVTDocumentInfo d)
           
 java.io.InputStream WVTDocumentLoader.loadDocument(WVTDocumentInfo d)
          Open the document and return an input stream on it.
 java.io.InputStream SourceAsTextLoader.loadDocument(WVTDocumentInfo d)
          Open the document and return an input stream on it.
 

Uses of WVTDocumentInfo in edu.udo.cs.wvtool.generic.stemmer
 

Methods in edu.udo.cs.wvtool.generic.stemmer with parameters of type WVTDocumentInfo
 TokenEnumeration SnowballStemmerWrapper.stem(TokenEnumeration source, WVTDocumentInfo d)
           
 TokenEnumeration WVTStemmer.stem(TokenEnumeration source, WVTDocumentInfo d)
          Convert a list of tokens to a list of stems.
 TokenEnumeration AbstractStemmer.stem(TokenEnumeration source, WVTDocumentInfo d)
           
 

Uses of WVTDocumentInfo in edu.udo.cs.wvtool.generic.tokenizer
 

Methods in edu.udo.cs.wvtool.generic.tokenizer with parameters of type WVTDocumentInfo
 TokenEnumeration SimpleTokenizer.tokenize(java.io.Reader source, WVTDocumentInfo d)
           
 TokenEnumeration WVTTokenizer.tokenize(java.io.Reader source, WVTDocumentInfo d)
          Tokenize a character stream.
 TokenEnumeration NGramTokenizer.tokenize(java.io.Reader source, WVTDocumentInfo d)
           
 

Uses of WVTDocumentInfo in edu.udo.cs.wvtool.generic.vectorcreation
 

Methods in edu.udo.cs.wvtool.generic.vectorcreation with parameters of type WVTDocumentInfo
 WVTWordVector TermOccurrences.createVector(int[] frequencies, int numTermOccurences, WVTWordList wordList, WVTDocumentInfo d)
           
 WVTWordVector TermFrequency.createVector(int[] frequencies, int numTermOccurences, WVTWordList wordList, WVTDocumentInfo d)
           
 WVTWordVector TFIDF.createVector(int[] frequencies, int numTermOccurences, WVTWordList wordList, WVTDocumentInfo d)
           
 WVTWordVector WVTVectorCreator.createVector(int[] frequencies, int numTermOccurences, WVTWordList wordList, WVTDocumentInfo d)
          Create a word vector from term frequencies and a word list.
 WVTWordVector BinaryOccurrences.createVector(int[] frequencies, int numTermOccurences, WVTWordList wordList, WVTDocumentInfo d)
           
 

Uses of WVTDocumentInfo in edu.udo.cs.wvtool.generic.wordfilter
 

Methods in edu.udo.cs.wvtool.generic.wordfilter with parameters of type WVTDocumentInfo
 TokenEnumeration SelectingWordFilter.filter(TokenEnumeration source, WVTDocumentInfo d)
           
 TokenEnumeration WVTWordFilter.filter(TokenEnumeration source, WVTDocumentInfo d)
          Filter tokens from a token stream.
 TokenEnumeration AbstractStopWordFilter.filter(TokenEnumeration source, WVTDocumentInfo d)
           
 

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

Fields in edu.udo.cs.wvtool.main declared as WVTDocumentInfo
private  WVTDocumentInfo WVTWordVector.documentInfo
          reference to the document information
 

Methods in edu.udo.cs.wvtool.main that return WVTDocumentInfo
 WVTDocumentInfo WVTWordVector.getDocumentInfo()
          Returns the documentInfo.
 

Methods in edu.udo.cs.wvtool.main with parameters of type WVTDocumentInfo
 void WVTFileInputList.addEntry(WVTDocumentInfo d)
          Add an entry to the list.
 WVTWordVector WVTool.createVector(java.lang.String text, WVTDocumentInfo d, WVTConfiguration config, WVTWordList wordList)
          Create a single word vector.
 void WVToolWordListener.openNewDocument(WVTDocumentInfo docInfo)
          Invoked as a new document is opened for processing.
 void WVTFileInputList.removeEntry(WVTDocumentInfo d)
          Remove an entry from the list.
 void WVTWordVector.setDocumentInfo(WVTDocumentInfo documentInfo)
          Sets the documentInfo.
 

Uses of WVTDocumentInfo in edu.udo.cs.wvtool.wordlist
 

Methods in edu.udo.cs.wvtool.wordlist with parameters of type WVTDocumentInfo
 void WVTWordList.closeDocument(WVTDocumentInfo d)
          Used to reset the calculation for individual documents after the given document has been processed.