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