org.enhydra.apache.xml.serialize
Interface DOMSerializer
- All Known Implementing Classes:
- BaseMarkupSerializer
- public interface DOMSerializer
Interface for a DOM serializer implementation.
- Version:
- $Revision: 1.2 $ $Date: 2005/01/26 08:28:45 $
- Author:
- Scott Boag, Assaf Arkin
serialize
public void serialize(Element elem)
throws IOException
- 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 while
serializing
serialize
public void serialize(Document doc)
throws IOException
- 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 while
serializing
serialize
public void serialize(DocumentFragment frag)
throws IOException
- 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 while
serializing
Copyright © 1999 The Apache Software Foundation. All Rights reserved.