Uses of Interface
nz.ac.waikato.mcennis.rat.parser.Parser

Packages that use Parser
nz.ac.waikato.mcennis.rat.crawler   
nz.ac.waikato.mcennis.rat.parser   
nz.ac.waikato.mcennis.rat.parser.xmlHandler   
 

Uses of Parser in nz.ac.waikato.mcennis.rat.crawler
 

Fields in nz.ac.waikato.mcennis.rat.crawler declared as Parser
protected  Parser[] CrawlerBase.parser
          Parser array handling all parsers utilized in processing documents.
 

Methods in nz.ac.waikato.mcennis.rat.crawler that return Parser
 Parser[] Crawler.getParser()
          Returns an array of Parser objects used by this crawler to parse pages.
 Parser[] CrawlerBase.getParser()
          Returns the parsers that are associated with this crawler.
 Parser[] FileListCrawler.getParser()
          Retrieves the parsers that are associated with this crawler
 Parser[] GZipFileCrawler.getParser()
           
 Parser[] WebCrawler.getParser()
          Returns the parsers of the first spider.
 

Methods in nz.ac.waikato.mcennis.rat.crawler with parameters of type Parser
 void Crawler.set(Parser[] parser)
          Set the parsers that are to be utilized by this crawler to interpret the documents that are parsed.
 void CrawlerBase.set(Parser[] parser)
          Takes the current array of parsers and creates a copy of them utilizing the duplicate method on each parser.
 void FileListCrawler.set(Parser[] parser)
          Establishes the parsers to be used by this crawler when retrieving parsers.
 void GZipFileCrawler.set(Parser[] parser)
           
 void WebCrawler.set(Parser[] parser)
          Set the parser for all spiders in this object.
 

Uses of Parser in nz.ac.waikato.mcennis.rat.parser
 

Classes in nz.ac.waikato.mcennis.rat.parser that implement Parser
 class BaseHTMLParser
          Class for transforming WebPage data into bag-of-words format.
 class GoogleArtistParser
          Class for parsing the Google music artist search engine results.
 class ISMIRBibtexParser
          This class parses bibtex files generated by a custom group of perl scripts that take as input the comma seperated files from www.ismir.net, then reads the xml version of the papers (pdftohtml) to determine which ismir papers reference which other papers.
 class LastFmBasicArtistParser
          Class for parsing actor biographies on LastFM.
 class LinkTest
          Dummy class designed purely to test spidering capabilities
 class NullParser
          Intentionally a do-nothing parser.
 class ParseArtistList
          Class for parsing a newline-deliminated list of artists into an artist decider
 class ToFileParser
          Class for writing the contents of a data stream to a file.
 class XMLParser
          Class for parsing XML documents.
 

Methods in nz.ac.waikato.mcennis.rat.parser that return Parser
 Parser ParserFactory.create(java.util.Properties props)
          Create Parsers using the given properties file as parameters Parser Class is determined by the 'ParserType' key HTML File'ToFileDirectory' - directory where files should be stored Scheduler - see HandlerFactory-RATExecution for more parameters FOAF - see HandlerFactory-FOAF for more parameters Graph - see HandlerFactory-Graph for more parameters GoogleArtist LastFmArtist 'LastFMType' - LastFM xml parser if XML, Basic bio parser otherwise BaseArtistDecider - ArtistDecider created - see ArtistDeciderFactory ArtistDeciderXML YahooArtistDecider LastFMArtistTag - see HandlerFactory-LastFMArtistTag for parameters
 Parser BaseHTMLParser.duplicate()
           
 Parser GoogleArtistParser.duplicate()
           
 Parser ISMIRBibtexParser.duplicate()
           
 Parser LastFmBasicArtistParser.duplicate()
           
 Parser LinkTest.duplicate()
           
 Parser NullParser.duplicate()
           
 Parser ParseArtistList.duplicate()
           
 Parser Parser.duplicate()
          Create an exact copy of this object
 Parser ToFileParser.duplicate()
           
 Parser XMLParser.duplicate()
           
 

Uses of Parser in nz.ac.waikato.mcennis.rat.parser.xmlHandler
 

Methods in nz.ac.waikato.mcennis.rat.parser.xmlHandler that return Parser
 Parser[] LastFMUserExpansion.setUpParsers(java.io.File toFileDirectory, Graph graph)
          Create the set of parsers for a crawler to parse.
 Parser[] LastFMUserExpansion.setUpParsers(java.io.File toFileDirectory, Graph graph, java.lang.String[] parserNames)
          Create the set of parsers for a crawler to parse.