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