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