Package org.odftoolkit.odfdom.dom.element.meta

Examples of org.odftoolkit.odfdom.dom.element.meta.MetaDateStringElement


   * Create child element {@odf.element meta:date-string}.
   *
   * @return the element {@odf.element meta:date-string}
   */
  public MetaDateStringElement newMetaDateStringElement() {
    MetaDateStringElement metaDateString = ((OdfFileDom) this.ownerDocument).newOdfElement(MetaDateStringElement.class);
    this.appendChild(metaDateString);
    return metaDateString;
  }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.element.meta.MetaDateStringElement

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.