Serialize an xml representation of a graph of objects into a writer.
Created: Feb 24, 2003
Copyright: Copyright (c) 2003
Assumptions: none
Requires: nothing
Required by: nothing
Revision History:
Example:
Config config = new Config(); config.setNumber(123); config.setString("acb"); XmlWriter writer = new XmlWriter("filename.xml"); writer.setRootObject(config); Would produce an xml file that might look like: <Config> <number>123</number> <string>abc</string> </Config>
Conventions:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|