Package org.odftoolkit.odfdom.dom.element.presentation

Examples of org.odftoolkit.odfdom.dom.element.presentation.PresentationFooterDeclElement


   *
   * @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;
  }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.element.presentation.PresentationFooterDeclElement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.