* Child element is new in Odf 1.2
*
* @return the element {@odf.element office:annotation-end}
*/
public OfficeAnnotationEndElement newOfficeAnnotationEndElement(String officeNameValue) {
OfficeAnnotationEndElement officeAnnotationEnd = ((OdfFileDom) this.ownerDocument).newOdfElement(OfficeAnnotationEndElement.class);
officeAnnotationEnd.setOfficeNameAttribute(officeNameValue);
this.appendChild(officeAnnotationEnd);
return officeAnnotationEnd;
}