*
* @param presentationNameValue the <code>String</code> value of <code>PresentationNameAttribute</code>, see {@odf.attribute presentation:name} at specification
* @return the element {@odf.element presentation:header-decl}
*/
public PresentationHeaderDeclElement newPresentationHeaderDeclElement(String presentationNameValue) {
PresentationHeaderDeclElement presentationHeaderDecl = ((OdfFileDom) this.ownerDocument).newOdfElement(PresentationHeaderDeclElement.class);
presentationHeaderDecl.setPresentationNameAttribute(presentationNameValue);
this.appendChild(presentationHeaderDecl);
return presentationHeaderDecl;
}