| 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: 476047 $ $Date: 2006-11-16 23:27:45 -0500 (Thu, 16 Nov 2006) $ 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 |
|
|