| org.apache.xml.serialize.DOMSerializer
All known Subclasses: org.apache.xml.serialize.BaseMarkupSerializer,
DOMSerializer | public interface DOMSerializer (Code) | | Interface for a DOM serializer implementation.
version: $Revision: 1.3 $ $Date: 2000/08/30 18:59:19 $ author: Scott Boag author: Assaf Arkin |
serialize | public void serialize(Element elem) throws IOException(Code) | | Serialized the DOM element. Throws an exception only if
an I/O exception occured while serializing.
Parameters: elem - The element to serialize throws: IOException - An I/O exception occured whileserializing |
serialize | public void serialize(Document doc) throws IOException(Code) | | Serializes the DOM document. Throws an exception only if
an I/O exception occured while serializing.
Parameters: doc - The document to serialize throws: IOException - An I/O exception occured whileserializing |
serialize | public void serialize(DocumentFragment frag) throws IOException(Code) | | Serializes the DOM document fragment. Throws an exception
only if an I/O exception occured while serializing.
Parameters: frag - The document fragment to serialize throws: IOException - An I/O exception occured whileserializing |
|
|