*/
public class NamedCurveMarshaller extends AbstractXMLSignatureMarshaller {
/** {@inheritDoc} */
protected void marshallAttributes(XMLObject xmlObject, Element domElement) throws MarshallingException {
NamedCurve nc = (NamedCurve) xmlObject;
if (nc.getURI() != null) {
domElement.setAttributeNS(null, NamedCurve.URI_ATTRIB_NAME, nc.getURI());
}
}