XmlObject.java [src/usda/weru/util/table] Revision: default Date:
/*
* XmlObject.java
*
* Created on June 9, 2006, 8:00 AM
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package usda.weru.util.table;
import org.jdom.Element;
/**
* Interface for an Object configured by an XML node.
* @author Joseph Levin
*/
public interface XmlObject {
/**
* Load configuration settings for this Object from a jdom Element.
* @param node An org.jdom.Element containing configuration information about this Object.
*/
public void fromXml(Element node);
//TODO: Implement toXml code.
//public Element toXml();
}