com.ibm.commerce.order.history

Interface XMLRecordable

    • Field Summary

      Fields 
      Modifier and Type Field and Description
      static java.lang.String COPYRIGHT
      IBM Copyright
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method and Description
      java.lang.String fieldsToXML()
      This methods converts only this object's fields into an XML format representation.
      XMLRecordable toFields(org.w3c.dom.Node xmlNode)
      This method transforms an XML node into a real Object's fields.
      XMLRecordable toObject(org.w3c.dom.Node xmlNode)
      This method transforms an XML node into a real Object
      java.lang.String toXML()
      The method converts any object contained into an XML format representation.
    • Method Detail

      • toObject

        XMLRecordable toObject(org.w3c.dom.Node xmlNode)
        This method transforms an XML node into a real Object
        Parameters:
        xmlNode - the XML string to be converted to an object.
        Returns:
        the object the XML string represents.
      • toFields

        XMLRecordable toFields(org.w3c.dom.Node xmlNode)
        This method transforms an XML node into a real Object's fields.
        Parameters:
        xmlNode - the XML node contains the fields to be converted.
        Returns:
        the object whose fields from the XML node passed in.
      • toXML

        java.lang.String toXML()
        The method converts any object contained into an XML format representation.
        Returns:
        an XML string represents the current object.
      • fieldsToXML

        java.lang.String fieldsToXML()
        This methods converts only this object's fields into an XML format representation.
        Returns:
        an XML string represents the objects's fields only.