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

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


   * It can be represented by <code>OdfMetaAutoReload</code> feature;
   * <p>
   * <code>null</code>, if the feature is not exist.
   */
  public OdfMetaAutoReload getAutoReload() {
    MetaAutoReloadElement element = getAutoReloadElement();
    if (element != null) {
      return new OdfMetaAutoReload(element);
    } else {
      return null;
    }
View Full Code Here


   * It can be represented by <code>OdfMetaAutoReload</code> feature;
   * <p>
   * <code>null</code>, if the feature is not exist.
   */
  public OdfMetaAutoReload getAutoReload() {
    MetaAutoReloadElement element = getAutoReloadElement();
    if (element != null) {
      return new OdfMetaAutoReload(element);
    } else {
      return null;
    }
View Full Code Here

   * Child element is new in Odf 1.2
   *
   * @return the element {@odf.element meta:auto-reload}
   */
  public MetaAutoReloadElement newMetaAutoReloadElement() {
    MetaAutoReloadElement metaAutoReload = ((OdfFileDom) this.ownerDocument).newOdfElement(MetaAutoReloadElement.class);
    this.appendChild(metaAutoReload);
    return metaAutoReload;
  }
View Full Code Here

TOP

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

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.