*
* @param drawNameValue the <code>String</code> value of <code>DrawNameAttribute</code>, see {@odf.attribute draw:name} at specification
* @return the element {@odf.element svg:radialGradient}
*/
public SvgRadialGradientElement newSvgRadialGradientElement(String drawNameValue) {
SvgRadialGradientElement svgRadialGradient = ((OdfFileDom) this.ownerDocument).newOdfElement(SvgRadialGradientElement.class);
svgRadialGradient.setDrawNameAttribute(drawNameValue);
this.appendChild(svgRadialGradient);
return svgRadialGradient;
}