Package org.odftoolkit.odfdom.dom.element.text

Examples of org.odftoolkit.odfdom.dom.element.text.TextLinenumberingConfigurationElement


   *
   * @param styleNumFormatValue  the <code>String</code> value of <code>StyleNumFormatAttribute</code>, see {@odf.attribute  style:num-format} at specification
   * @return the element {@odf.element text:linenumbering-configuration}
   */
   public TextLinenumberingConfigurationElement newTextLinenumberingConfigurationElement(String styleNumFormatValue) {
    TextLinenumberingConfigurationElement textLinenumberingConfiguration = ((OdfFileDom) this.ownerDocument).newOdfElement(TextLinenumberingConfigurationElement.class);
    textLinenumberingConfiguration.setStyleNumFormatAttribute(styleNumFormatValue);
    this.appendChild(textLinenumberingConfiguration);
    return textLinenumberingConfiguration;
  }
View Full Code Here


   *
   * @param styleNumFormatValue  the <code>String</code> value of <code>StyleNumFormatAttribute</code>, see {@odf.attribute  style:num-format} at specification
   * @return the element {@odf.element text:linenumbering-configuration}
   */
   public TextLinenumberingConfigurationElement newTextLinenumberingConfigurationElement(String styleNumFormatValue) {
    TextLinenumberingConfigurationElement textLinenumberingConfiguration = ((OdfFileDom) this.ownerDocument).newOdfElement(TextLinenumberingConfigurationElement.class);
    textLinenumberingConfiguration.setStyleNumFormatAttribute(styleNumFormatValue);
    this.appendChild(textLinenumberingConfiguration);
    return textLinenumberingConfiguration;
  }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.element.text.TextLinenumberingConfigurationElement

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.