The Encog Project

org.encog.persist.persistors.generic
Class Object2XML

java.lang.Object
  extended by org.encog.persist.persistors.generic.Object2XML

public class Object2XML
extends java.lang.Object

A generic class used to take an object and produce XML for it. Some of the Encog persistors make use of this class. The Encog generic persistor makes use of this class.

Author:
jheaton

Constructor Summary
Object2XML()
           
 
Method Summary
 void save(EncogPersistedObject encogObject, WriteXML out)
          Save the object to XML.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Object2XML

public Object2XML()
Method Detail

save

public void save(EncogPersistedObject encogObject,
                 WriteXML out)
Save the object to XML.

Parameters:
encogObject - The object to save.
out - The XML writer.

The Encog Project