Package org.odftoolkit.odfdom.dom.element.config

Examples of org.odftoolkit.odfdom.dom.element.config.ConfigConfigItemSetElement


   * Child element is mandatory.
   *
   * @return the element {@odf.element config:config-item-set}
   */
   public ConfigConfigItemSetElement newConfigConfigItemSetElement(String configNameValue) {
    ConfigConfigItemSetElement configConfigItemSet = ((OdfFileDom) this.ownerDocument).newOdfElement(ConfigConfigItemSetElement.class);
    configConfigItemSet.setConfigNameAttribute(configNameValue);
    this.appendChild(configConfigItemSet);
    return configConfigItemSet;
  }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.element.config.ConfigConfigItemSetElement

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.