org.htmlparser.visitors
Class HtmlPage

java.lang.Object
  extended byorg.htmlparser.visitors.NodeVisitor
      extended byorg.htmlparser.visitors.HtmlPage

public class HtmlPage
extends NodeVisitor


Constructor Summary
HtmlPage(Parser parser)
           
 
Method Summary
 NodeList getBody()
           
 TableTag[] getTables()
           
 java.lang.String getTitle()
           
 void setTitle(java.lang.String title)
           
 void visitTag(Tag tag)
          Called for each Tag visited.
 
Methods inherited from class org.htmlparser.visitors.NodeVisitor
beginParsing, finishedParsing, shouldRecurseChildren, shouldRecurseSelf, visitEndTag, visitRemarkNode, visitStringNode
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HtmlPage

public HtmlPage(Parser parser)
Method Detail

getTitle

public java.lang.String getTitle()

setTitle

public void setTitle(java.lang.String title)

visitTag

public void visitTag(Tag tag)
Description copied from class: NodeVisitor
Called for each Tag visited.

Overrides:
visitTag in class NodeVisitor
Parameters:
tag - The tag being visited.

getBody

public NodeList getBody()

getTables

public TableTag[] getTables()