Document document = element.getOwnerDocument();
// Store the time value.
Time time = (Time) value;
Element timeElement = document.createElement(TIME_ATTR_NAME);
timeElement.appendChild(document.createTextNode(time.toSerializedForm()));
element.appendChild(timeElement);
}
/**
* @see org.openquark.util.xml.XMLAttributeSerializer#loadFromAttribute(org.w3c.dom.Element)