Method Summary |
|
public void | close() This method has no effect when called. |
public void | flush() This method has no effect when called. |
public javax.xml.namespace.NamespaceContext | getNamespaceContext() |
public String | getPrefix(String namespaceURI) |
public Object | getProperty(String str) Is not supported in this implementation. |
public void | setDefaultNamespace(String uri) Is not supported in this version of the implementation. |
public void | setNamespaceContext(javax.xml.namespace.NamespaceContext namespaceContext) |
public void | setPrefix(String prefix, String uri) Is not supported in this version of the implementation. |
public void | writeAttribute(String localName, String value) Creates a DOM Atrribute @see org.w3c.dom.Node and associates it with the current DOM element @see org.w3c.dom.Node. |
public void | writeAttribute(String namespaceURI, String localName, String value) Creates a DOM Atrribute @see org.w3c.dom.Node and associates it with the current DOM element @see org.w3c.dom.Node. |
public void | writeAttribute(String prefix, String namespaceURI, String localName, String value) Creates a DOM Atrribute @see org.w3c.dom.Node and associates it with the current DOM element @see org.w3c.dom.Node. |
public void | writeCData(String data) Creates a CDATA object @see org.w3c.dom.CDATASection. |
public void | writeCharacters(String charData) Creates a character object @see org.w3c.dom.Text and appends it to the current
element in the DOM tree. |
public void | writeCharacters(char[] values, int param, int param2) Creates a character object @see org.w3c.dom.Text and appends it to the current
element in the DOM tree. |
public void | writeComment(String str) Creates a Comment object @see org.w3c.dom.Comment and appends it to the current
element in the DOM tree. |
public void | writeDTD(String str) This method is not supported in this implementation. |
public void | writeDefaultNamespace(String namespaceURI) Creates a DOM attribute and adds it to the current element in the DOM tree. |
public void | writeEmptyElement(String localName) creates a DOM Element and appends it to the current element in the tree. |
public void | writeEmptyElement(String namespaceURI, String localName) creates a DOM Element and appends it to the current element in the tree. |
public void | writeEmptyElement(String prefix, String localName, String namespaceURI) creates a DOM Element and appends it to the current element in the tree. |
public void | writeEndDocument() Will reset current Node pointer maintained by the implementation. |
public void | writeEndElement() Internal current Node pointer will point to the parent of the current Node. |
public void | writeEntityRef(String name) Is not supported in this implementation. |
public void | writeNamespace(String prefix, String namespaceURI) creates a namespace attribute and will associate it with the current element in
the DOM tree. |
public void | writeProcessingInstruction(String target) is not supported in this release. |
public void | writeProcessingInstruction(String target, String data) is not supported in this release. |
public void | writeStartDocument() will set version on the Document object when the DOM Node passed to this implementation
supports DOM Level3 API's. |
public void | writeStartDocument(String version) will set version on the Document object when the DOM Node passed to this implementation
supports DOM Level3 API's. |
public void | writeStartDocument(String encoding, String version) will set version on the Document object when the DOM Node passed to this implementation
supports DOM Level3 API's. |
public void | writeStartElement(String localName) creates a DOM Element and appends it to the current element in the tree. |
public void | writeStartElement(String namespaceURI, String localName) creates a DOM Element and appends it to the current element in the tree. |
public void | writeStartElement(String prefix, String localName, String namespaceURI) creates a DOM Element and appends it to the current element in the tree. |