org.apache.xalan.xsltc.trax
public class SAX2DOM extends Object implements ContentHandler, LexicalHandler, Constants
| Constructor Summary | |
|---|---|
| SAX2DOM() | |
| SAX2DOM(Node root, Node nextSibling) | |
| SAX2DOM(Node root) | |
| Method Summary | |
|---|---|
| void | characters(char[] ch, int start, int length) |
| void | comment(char[] ch, int start, int length)
Lexical Handler method to create comment node in DOM tree. |
| void | endCDATA() |
| void | endDocument() |
| void | endDTD() |
| void | endElement(String namespace, String localName, String qName) |
| void | endEntity(String name) |
| void | endPrefixMapping(String prefix) |
| Node | getDOM() |
| void | ignorableWhitespace(char[] ch, int start, int length)
This class is only used internally so this method should never
be called. |
| void | processingInstruction(String target, String data)
adds processing instruction node to DOM. |
| void | setDocumentLocator(Locator locator)
This class is only used internally so this method should never
be called. |
| void | skippedEntity(String name)
This class is only used internally so this method should never
be called. |
| void | startCDATA() |
| void | startDocument() |
| void | startDTD(String name, String publicId, String systemId) |
| void | startElement(String namespace, String localName, String qName, Attributes attrs) |
| void | startEntity(String name) |
| void | startPrefixMapping(String prefix, String uri) |