org.apache.html.dom
public class HTMLBuilder extends Object implements DocumentHandler
Version: $Revision: 1.7 $ $Date: 2004/02/24 23:34:00 $
Field Summary | |
---|---|
protected ElementImpl | _current
The current node in the document into which elements, text and
other nodes will be inserted. |
protected HTMLDocumentImpl | _document
The document that is being built. |
protected Vector | _preRootNodes
The document is only created the same time as the document element, however, certain
nodes may precede the document element (comment and PI), and they are accumulated
in this vector. |
Method Summary | |
---|---|
void | characters(String text) |
void | characters(char[] text, int start, int length) |
void | endDocument() |
void | endElement(String tagName) |
HTMLDocument | getHTMLDocument() |
void | ignorableWhitespace(char[] text, int start, int length) |
void | processingInstruction(String target, String instruction) |
void | setDocumentLocator(Locator locator) |
void | startDocument() |
void | startElement(String tagName, AttributeList attrList) |