XMLHelper.marshallAttributeMap(aul.getUnknownAttributes(), domElement);
}
/** {@inheritDoc} */
protected void marshallElementContent(XMLObject xmlObject, Element domElement) throws MarshallingException {
AttributedUnsignedLong aul = (AttributedUnsignedLong) xmlObject;
if (aul.getValue() != null) {
XMLHelper.appendTextContent(domElement, aul.getValue().toString());
}
}