* @param smilAttributeNameValue the <code>String</code> value of <code>SmilAttributeNameAttribute</code>, see {@odf.attribute smil:attributeName} at specification
* @param svgTypeValue the <code>String</code> value of <code>SvgTypeAttribute</code>, see {@odf.attribute svg:type} at specification
* @return the element {@odf.element anim:animateTransform}
*/
public AnimAnimateTransformElement newAnimAnimateTransformElement(String smilAttributeNameValue, String svgTypeValue) {
AnimAnimateTransformElement animAnimateTransform = ((OdfFileDom) this.ownerDocument).newOdfElement(AnimAnimateTransformElement.class);
animAnimateTransform.setSmilAttributeNameAttribute(smilAttributeNameValue);
animAnimateTransform.setSvgTypeAttribute(svgTypeValue);
this.appendChild(animAnimateTransform);
return animAnimateTransform;
}