Writes this node to the given XmlWriter. For node and document, this method is identical to writeChildren, except that the stream is flushed automatically.
(XmlSerializer writer)
| 118 | stream is flushed automatically. */ |
| 119 | |
| 120 | public void write(XmlSerializer writer) |
| 121 | throws IOException { |
| 122 | |
| 123 | writer.startDocument(encoding, standalone); |
| 124 | writeChildren(writer); |
| 125 | writer.endDocument(); |
| 126 | } |
| 127 | |
| 128 | |
| 129 | } |
nothing calls this directly
no test coverage detected