*
* @param smilAttributeNameValue the <code>String</code> value of <code>SmilAttributeNameAttribute</code>, see {@odf.attribute smil:attributeName} at specification
* @return the element {@odf.element anim:animateColor}
*/
public AnimAnimateColorElement newAnimAnimateColorElement(String smilAttributeNameValue) {
AnimAnimateColorElement animAnimateColor = ((OdfFileDom) this.ownerDocument).newOdfElement(AnimAnimateColorElement.class);
animAnimateColor.setSmilAttributeNameAttribute(smilAttributeNameValue);
this.appendChild(animAnimateColor);
return animAnimateColor;
}