*
* @param styleNameValue the <code>String</code> value of <code>StyleNameAttribute</code>, see {@odf.attribute style:name} at specification
* @return the element {@odf.element number:number-style}
*/
public NumberNumberStyleElement newNumberNumberStyleElement(String styleNameValue) {
NumberNumberStyleElement numberNumberStyle = ((OdfFileDom) this.ownerDocument).newOdfElement(NumberNumberStyleElement.class);
numberNumberStyle.setStyleNameAttribute(styleNameValue);
this.appendChild(numberNumberStyle);
return numberNumberStyle;
}