*
* @param animCommandValue the <code>String</code> value of <code>AnimCommandAttribute</code>, see {@odf.attribute anim:command} at specification
* @return the element {@odf.element anim:command}
*/
public AnimCommandElement newAnimCommandElement(String animCommandValue) {
AnimCommandElement animCommand = ((OdfFileDom) this.ownerDocument).newOdfElement(AnimCommandElement.class);
animCommand.setAnimCommandAttribute(animCommandValue);
this.appendChild(animCommand);
return animCommand;
}