com.esri.aims.mtier.model.util
Class DomToString

java.lang.Object
  extended by com.esri.aims.mtier.model.util.DomToString

public class DomToString
extends Object

Converts an XML Document into a String object.

Example:

DomToString domToString = new DomToString();


Constructor Summary
DomToString()
           
 
Method Summary
static String writeString(Document doc)
          Writes the XML Document object to a String object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DomToString

public DomToString()
Method Detail

writeString

public static String writeString(Document doc)
Writes the XML Document object to a String object. Example:
String AXLString = domToString.writeString(XMLDocumentObject);
;

Parameters:
doc - the XML Document
Returns:
the string representation of the XML document.