<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * 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.jdom2.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.jdom2.Element containing configuration information about this Object.
     */
    public void fromXml(Element node);
    //TODO: Implement toXml code.
    //public Element toXml();
}
</pre></body></html>