public interface XMLizable
extends java.io.Serializable
XMLizable
Objects can always be represented by an XML
String. Also, they can always be transformed to a real Object from an XML
representation.Modifier and Type | Field and Description |
---|---|
static java.lang.String |
COPYRIGHT
IBM Copyright
|
Modifier and Type | Method and Description |
---|---|
void |
fromXML(org.w3c.dom.Node anXMLNode)
Transforms the XML node into its corresponding real Object.
|
java.lang.String |
toXML()
Converts the object into its corresponding XML format representation.
|
static final java.lang.String COPYRIGHT
java.lang.String toXML() throws XMLizationException
XMLizationException
- when this process failsvoid fromXML(org.w3c.dom.Node anXMLNode) throws DeXMLizationException
anXMLNode
- The node that represents an XMLizable objectDeXMLizationException
- when this process fails