org.apache.xml.serialize
Interface DOMSerializer
- BaseMarkupSerializer, HTMLSerializer, TextSerializer, XHTMLSerializer, XML11Serializer, XMLSerializer
public interface DOMSerializer
Interface for a DOM serializer implementation.
$Revision: 319808 $ $Date: 2004-02-24 18:34:05 -0500 (Tue, 24 Feb 2004) $ void | serialize(org.w3c.dom.Document doc)- Serializes the DOM document.
|
void | serialize(org.w3c.dom.DocumentFragment frag)- Serializes the DOM document fragment.
|
void | serialize(org.w3c.dom.Element elem)- Serialized the DOM element.
|
serialize
public void serialize(org.w3c.dom.Document doc)
throws IOException Serializes the DOM document. Throws an exception only if
an I/O exception occured while serializing.
doc - The document to serialize
serialize
public void serialize(org.w3c.dom.DocumentFragment frag)
throws IOException Serializes the DOM document fragment. Throws an exception
only if an I/O exception occured while serializing.
frag - The document fragment to serialize
serialize
public void serialize(org.w3c.dom.Element elem)
throws IOException Serialized the DOM element. Throws an exception only if
an I/O exception occured while serializing.
elem - The element to serialize
Copyright B) 1999-2006 The Apache Software Foundation. All Rights Reserved.