Examples of PresentationHeaderDeclElement


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

   *
   * @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;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.