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

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


   * @param presentationNameValue  the <code>String</code> value of <code>PresentationNameAttribute</code>, see {@odf.attribute  presentation:name} at specification
   * @param presentationSourceValue  the <code>String</code> value of <code>PresentationSourceAttribute</code>, see {@odf.attribute  presentation:source} at specification
   * @return the element {@odf.element presentation:date-time-decl}
   */
   public PresentationDateTimeDeclElement newPresentationDateTimeDeclElement(String presentationNameValue, String presentationSourceValue) {
    PresentationDateTimeDeclElement presentationDateTimeDecl = ((OdfFileDom) this.ownerDocument).newOdfElement(PresentationDateTimeDeclElement.class);
    presentationDateTimeDecl.setPresentationNameAttribute(presentationNameValue);
    presentationDateTimeDecl.setPresentationSourceAttribute(presentationSourceValue);
    this.appendChild(presentationDateTimeDecl);
    return presentationDateTimeDecl;
  }
View Full Code Here

TOP

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

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.