* @param styleApplyStyleNameValue the <code>String</code> value of <code>StyleApplyStyleNameAttribute</code>, see {@odf.attribute style:apply-style-name} at specification
* @param styleConditionValue the <code>String</code> value of <code>StyleConditionAttribute</code>, see {@odf.attribute style:condition} at specification
* @return the element {@odf.element style:map}
*/
public StyleMapElement newStyleMapElement(String styleApplyStyleNameValue, String styleConditionValue) {
StyleMapElement styleMap = ((OdfFileDom) this.ownerDocument).newOdfElement(StyleMapElement.class);
styleMap.setStyleApplyStyleNameAttribute(styleApplyStyleNameValue);
styleMap.setStyleConditionAttribute(styleConditionValue);
this.appendChild(styleMap);
return styleMap;
}