| java.lang.Object org.apache.html.dom.HTMLBuilder
HTMLBuilder | public class HTMLBuilder implements DocumentHandler(Code) | | This is a SAX document handler that is used to build an HTML document.
It can build a document from any SAX parser, but is specifically tuned
for working with the OpenXML HTML parser.
version: $Revision: 449313 $ $Date: 2006-09-23 18:01:43 -0400 (Sat, 23 Sep 2006) $ author: Assaf Arkin |
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. |
_current | protected ElementImpl _current(Code) | | The current node in the document into which elements, text and
other nodes will be inserted. This starts as the document itself
and reflects each element that is currently being parsed.
|
_preRootNodes | protected Vector _preRootNodes(Code) | | 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.
|
characters | public void characters(char[] text, int start, int length) throws SAXException(Code) | | |
ignorableWhitespace | public void ignorableWhitespace(char[] text, int start, int length) throws SAXException(Code) | | |
setDocumentLocator | public void setDocumentLocator(Locator locator)(Code) | | |
|
|