/** Constructor. */
public XSDateTimeMarshaller(){}
/** {@inheritDoc} */
protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
XSDateTime xsDateTime = (XSDateTime) xmlObject;
XMLHelper.appendTextContent(domElement, xsDateTime.getDateTimeFormatter().print(xsDateTime.getValue()));
}