| java.lang.Object net.sf.saxon.event.Emitter net.sf.saxon.dom.DOMEmitter
DOMEmitter | public class DOMEmitter extends Emitter (Code) | | DOMEmitter is an Emitter that attaches the result tree to a specified Node in a DOM Document
|
Method Summary | |
public void | attribute(int nameCode, int typeCode, CharSequence value, int locationId, int properties) | public void | characters(CharSequence chars, int locationId, int properties) Character data. | public void | close() End of the document. | public void | comment(CharSequence chars, int locationId, int properties) Handle a comment. | public void | endDocument() | public void | endElement() End of an element. | public void | namespace(int namespaceCode, int properties) | public void | open() Start of the document. | public void | processingInstruction(String target, CharSequence data, int locationId, int properties) Handle a processing instruction. | public void | setNode(Node node) | public void | startContent() | public void | startDocument(int properties) Start of a document node. | public void | startElement(int nameCode, int typeCode, int locationId, int properties) Start of an element. |
close | public void close()(Code) | | End of the document.
|
open | public void open()(Code) | | Start of the document.
|
setNode | public void setNode(Node node)(Code) | | Set output destination
|
startDocument | public void startDocument(int properties) throws XPathException(Code) | | Start of a document node.
|
startElement | public void startElement(int nameCode, int typeCode, int locationId, int properties) throws XPathException(Code) | | Start of an element.
|
|
|