public interface ValueSerializer
Classes that implement this interface must have an accessible no-arg constructor.
| Modifier and Type | Method and Description | 
|---|---|
org.w3c.dom.Node | 
getXMLContentNode(org.w3c.dom.Document xmlDoc,
                 java.lang.Object attrValue)
Creates an XML node in the given XML document for the given attribute
 value. 
 | 
java.lang.Object | 
getXMLContentValue(org.w3c.dom.Node attrNode)
Creates an attribute value by reading the XML data out of the given XML
 node. 
 | 
org.w3c.dom.Node getXMLContentNode(org.w3c.dom.Document xmlDoc,
                                   java.lang.Object attrValue)
xmlDoc - the XML document in which the node should be createdattrValue - the attribute value to be serializedgetXMLContentValue(Node)java.lang.Object getXMLContentValue(org.w3c.dom.Node attrNode)
attrNode - an XML node containing the serialized attribute valuegetXMLContentNode(Document, Object)