Oracle Fusion Middleware
Oracle WebLogic Server API Reference
11g Release 1 (10.3.6)

Part Number E13941-06

weblogic.apache.xml.serialize
Interface DOMSerializer

All Known Implementing Classes:
BaseMarkupSerializer, HTMLSerializer, TextSerializer, XHTMLSerializer, XMLSerializer

Deprecated. 9.2.0.0 Replaced by org.apache.xml.serialize.DOMSerializer.

public interface DOMSerializer

Interface for a DOM serializer implementation.


Method Summary
 void serialize(Document doc)
          Deprecated. Serializes the DOM document.
 void serialize(DocumentFragment frag)
          Deprecated. Serializes the DOM document fragment.
 void serialize(Element elem)
          Deprecated. Serialized the DOM element.
 

Method Detail

serialize

void serialize(Element elem)
               throws IOException
Deprecated. 
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

void serialize(Document doc)
               throws IOException
Deprecated. 
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

void serialize(DocumentFragment frag)
               throws IOException
Deprecated. 
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 1996, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Oracle WebLogic Server API Reference
11g Release 1 (10.3.6)

Part Number E13941-06