org.sbml.jsbml.util
public interface NodeWriter
| Modifier and Type | Method and Description |
|---|---|
void |
write(org.w3c.dom.Node node,
java.io.OutputStream byteStream,
boolean indent)
Writes an XML DOM node to a byte stream.
|
void |
write(org.w3c.dom.Node node,
java.io.Writer characterStream,
boolean indent)
Writes an XML DOM node to a character stream.
|
void write(org.w3c.dom.Node node,
java.io.OutputStream byteStream,
boolean indent)
node - The org.w3c.dom.Node instance representing the
XML DOM node to be written to byteStream.byteStream - The byte stream where node is to be written.indent - Flag to indicate whether the output should be indented or not.void write(org.w3c.dom.Node node,
java.io.Writer characterStream,
boolean indent)
node - The org.w3c.dom.Node instance representing the
XML DOM node to be written to characterStream.characterStream - The character stream where node is to be written.indent - Flag to indicate whether the output should be indented or not.