Uses of Class
org.jbox.dao.Page

Packages that use Page
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 This package defines APIs for searching index from database. 
org.jbox.searcher.simpleSearcher This package defines APIs of a simple implementation of Searcher. 
org.jbox.textCutter This package defines APIs for cutting text into words. 
org.jbox.webSpider This package defines APIs for crawling internet. 
org.jbox.webSpider.simpleSpider This package defines APIs of an simple implementation of WebSpider. 
 

Uses of Page in org.jbox.dao
 

Methods in org.jbox.dao that return Page
 Page PageHomeByHibernate.findById(long id)
           
 Page PageHome.findById(long id)
          Find a Page object from data base by the specified id.
 Page[] PageHomeByHibernate.findByIds(long[] ids)
           
 Page[] PageHome.findByIds(long[] ids)
          Find Page objects from data base by IDs.
 Page PageHomeByHibernate.findByUrl(java.lang.String url)
           
 Page PageHome.findByUrl(java.lang.String url)
          Count the number of records in table "page" in data base.
 

Methods in org.jbox.dao with parameters of type Page
 void PageHomeByHibernate.deletePage(Page p)
           
 void PageHome.deletePage(Page p)
          Delete a Page object from data base.
 long PageHomeByHibernate.savePage(Page p)
           
 long PageHome.savePage(Page p)
          Save a Page object to data base,and return the page id in data base.
 

Uses of Page in org.jbox.indexer
 

Methods in org.jbox.indexer with parameters of type Page
 void IndexWriter.saveIndex(Page page)
          Write index of words of a Page object to database.
 void AbstractIndexWriter.saveIndex(Page page)
           
 

Uses of Page in org.jbox.searcher
 

Methods in org.jbox.searcher that return Page
 Page[] Searcher.search(java.lang.String query)
          Search index with the query string.
 

Uses of Page in org.jbox.searcher.simpleSearcher
 

Subclasses of Page in org.jbox.searcher.simpleSearcher
 class PageProxy
          A proxy of Page.
 

Methods in org.jbox.searcher.simpleSearcher that return Page
 Page PageProxy.getPage()
          Return relative <@link Page> object.
 Page[] SimpleSearcher.search(java.lang.String query)
          Search index by a query string, return a Page array related to the query string.
 

Methods in org.jbox.searcher.simpleSearcher with parameters of type Page
 void PageProxy.setPage(Page page)
          Set a <@link Page> object to this PageProxy.
 

Uses of Page in org.jbox.textCutter
 

Methods in org.jbox.textCutter with parameters of type Page
 void CutterBox.cutPage(Page p)
          Cut text of Page object into words, calculate the TF of Word, and stored the words in the Page object.
 

Uses of Page in org.jbox.webSpider
 

Methods in org.jbox.webSpider that return Page
 Page WebSpider.next()
          Visit and return the next @{link Page Page} Object.
 

Uses of Page in org.jbox.webSpider.simpleSpider
 

Methods in org.jbox.webSpider.simpleSpider that return Page
 Page SimpleSpider.next()
          Visit and return the next @{link Page Page} object.