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)
| 310 | stream is flushed automatically. */ |
| 311 | |
| 312 | public void write(XmlSerializer writer) throws IOException { |
| 313 | writeChildren(writer); |
| 314 | writer.flush(); |
| 315 | } |
| 316 | |
| 317 | /** Writes the children of this node to the given XmlWriter. */ |
| 318 |
no test coverage detected