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

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


   * Create child element {@odf.element text:page-sequence}.
   *
   * @return the element {@odf.element text:page-sequence}
   */
  public TextPageSequenceElement newTextPageSequenceElement() {
    TextPageSequenceElement textPageSequence = ((OdfFileDom) this.ownerDocument).newOdfElement(TextPageSequenceElement.class);
    this.appendChild(textPageSequence);
    return textPageSequence;
  }
View Full Code Here


   * Create child element {@odf.element text:page-sequence}.
   *
   * @return the element {@odf.element text:page-sequence}
   */
  public TextPageSequenceElement newTextPageSequenceElement() {
    TextPageSequenceElement textPageSequence = ((OdfFileDom) this.ownerDocument).newOdfElement(TextPageSequenceElement.class);
    this.appendChild(textPageSequence);
    return textPageSequence;
  }
View Full Code Here

TOP

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

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.