Examples of MetaDocumentStatisticElement


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

   * <p>
   * <code>null</code>, if the feature is not exist.
   * @see org.odftoolkit.odfdom.dom.element.meta.DocumentStatistic
   */
  public DocumentStatistic getDocumentStatistic() {
    MetaDocumentStatisticElement element = getDocumentStatisticElement();
    if (element != null) {
      return new DocumentStatistic(element);
    } else {
      return null;
    }
View Full Code Here

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

   * Child element is new in Odf 1.2
   *
   * @return the element {@odf.element meta:document-statistic}
   */
  public MetaDocumentStatisticElement newMetaDocumentStatisticElement() {
    MetaDocumentStatisticElement metaDocumentStatistic = ((OdfFileDom) this.ownerDocument).newOdfElement(MetaDocumentStatisticElement.class);
    this.appendChild(metaDocumentStatistic);
    return metaDocumentStatistic;
  }
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.