Uses of Class
de.dbsystems.simplescrape.AbstractHTMLToken

Uses of AbstractHTMLToken in de.dbsystems.simplescrape
 

Subclasses of AbstractHTMLToken in de.dbsystems.simplescrape
 class HTMLComment
          Class for holding HTML-comments.
 class HTMLTag
          Represents tags in HTML-files.
 class RegExTextToken
          Basically a TextToken, but whose content is treated as a regular expression.
 class TextToken
          Represents tokens containing text data in an HTML-file.
 

Methods in de.dbsystems.simplescrape that return AbstractHTMLToken
 AbstractHTMLToken Scraper.get(int index)
          Returns the element at the given index.
 AbstractHTMLToken Tokenizer.readElement()
          Read the next HTML token from the input stream.
 

Methods in de.dbsystems.simplescrape that return types with arguments of type AbstractHTMLToken
 java.util.List<AbstractHTMLToken> Scraper.getForms()
          Returns all Elements in this document that are relevant to forms.
 

Methods in de.dbsystems.simplescrape with parameters of type AbstractHTMLToken
 int Scraper.indexOf(AbstractHTMLToken searchToken, ScrapeOptions options)
          Searches in the current data for a token as provided.
 int Scraper.indexOf(int startHere, AbstractHTMLToken searchToken, ScrapeOptions options)
          Searches in the current data for a token as provided.
 boolean HTMLTag.match(AbstractHTMLToken other, ScrapeOptions options)
           
 boolean HTMLComment.match(AbstractHTMLToken other, ScrapeOptions options)
           
abstract  boolean AbstractHTMLToken.match(AbstractHTMLToken other, ScrapeOptions options)
          Determines whether two tokens match.
 boolean TextToken.match(AbstractHTMLToken other, ScrapeOptions options)
           
 

Method parameters in de.dbsystems.simplescrape with type arguments of type AbstractHTMLToken
 void Scraper.printToFile(java.util.List<AbstractHTMLToken> tokens, java.lang.String filename)
          Convenience method for printing a list of tokens to a file.
 int Scraper.searchTokens(int startHere, java.util.Vector<AbstractHTMLToken> searchElements, ScrapeOptions options)
          Like searchTokenChain(Vector, ScrapeOptions), but with a configurable starting-point for the search.
 int Scraper.searchTokens(java.util.Vector<AbstractHTMLToken> searchElements, ScrapeOptions options)
          Searches in the current data for a sequence of tokens as provided.