*
* @param drawNameValue the <code>String</code> value of <code>DrawNameAttribute</code>, see {@odf.attribute draw:name} at specification
* @return the element {@odf.element draw:stroke-dash}
*/
public DrawStrokeDashElement newDrawStrokeDashElement(String drawNameValue) {
DrawStrokeDashElement drawStrokeDash = ((OdfFileDom) this.ownerDocument).newOdfElement(DrawStrokeDashElement.class);
drawStrokeDash.setDrawNameAttribute(drawNameValue);
this.appendChild(drawStrokeDash);
return drawStrokeDash;
}