Uses of Class
org.jbox.dao.Word

Packages that use Word
org.jbox.dao This package defines APIs of DAO. 
org.jbox.indexer This package defines APIs for creating and writing index to database. 
org.jbox.searcher.simpleSearcher This package defines APIs of a simple implementation of Searcher. 
org.jbox.textCutter.util This package defines APIs for helping Cutters to cut text. 
 

Uses of Word in org.jbox.dao
 

Methods in org.jbox.dao that return Word
 Word WordHomeByHibernate.findByWordStr(java.lang.String wordStr)
           
 Word WordHome.findByWordStr(java.lang.String wordStr)
          Find a Word object from data base by the specified string.
 

Methods in org.jbox.dao that return types with arguments of type Word
 java.util.Collection<Word> Page.getWords()
          Return a collection containing Word objects of page.
 

Methods in org.jbox.dao with parameters of type Word
 void WordHomeByHibernate.deleteWord(Word w)
           
 void WordHome.deleteWord(Word w)
          Delete a Word object from data base.
 void WordHomeByHibernate.saveWord(Word w)
           
 void WordHome.saveWord(Word w)
          Save a Word object to data base.
 void WordHomeByHibernate.saveWords(Word[] words)
           
 void WordHome.saveWords(Word[] words)
          Save Word objects in an array to data base.
 

Method parameters in org.jbox.dao with type arguments of type Word
 void Page.setWords(java.util.Collection<Word> words)
          Set a collection containing Word object.
 

Uses of Word in org.jbox.indexer
 

Methods in org.jbox.indexer with parameters of type Word
 void IndexWriterWithTFLOC.createIndex(Word w, long urlId)
          Create index of a Word with TF and location.
protected abstract  void AbstractIndexWriter.createIndex(Word w, long pageId)
          Create index of a Word.
 

Uses of Word in org.jbox.searcher.simpleSearcher
 

Methods in org.jbox.searcher.simpleSearcher that return types with arguments of type Word
 java.util.Collection<Word> PageProxy.getWords()
          Return a collection containing Word objects of Page.
 

Method parameters in org.jbox.searcher.simpleSearcher with type arguments of type Word
 void PageProxy.setWords(java.util.Collection<Word> words)
          Set a collection containing Word object.
 

Uses of Word in org.jbox.textCutter.util
 

Method parameters in org.jbox.textCutter.util with type arguments of type Word
 void NoiseFilter.filterNoise(java.util.Collection<Word> words)
          Filter noise words, remove words defined in noise dictionary from the specified collection .
 void NoiseFilter.filterRedundancy(java.util.Collection<Word> unFilteredWords)
          Filter redundant words.