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