base
Interface IXMLLoadable

All Known Implementing Classes:
ConfigurationManager, ConfigurationManager, User

public interface IXMLLoadable

Author:
skunk This interface must be implemented from any Object that is rappresentable in XML format and that should be loaded from an XML's document. This interface defines only a method interface to load a particular Object from an XML document. Must be used when Object doesn't have "final" fields declared. To load a particular object that defines final fields must be used another approach based on extending a Loadeable abstract class that defines a basic constructor from an XML document.

Method Summary
 java.lang.Object fromXml(org.w3c.dom.Document document)
          This method offers the opportunity to load an interface's implementing Object from a particular XML document.
 

Method Detail

fromXml

java.lang.Object fromXml(org.w3c.dom.Document document)
This method offers the opportunity to load an interface's implementing Object from a particular XML document.

Parameters:
document - The document from wich the implementing object must be loaded.


Copyright © 2006 SF.net. All Rights Reserved.