Package org.odftoolkit.odfdom.dom.element.table

Examples of org.odftoolkit.odfdom.dom.element.table.TableLastRowElement


      String tableParagraphStyleNameValue) {
    NodeList elements = mElement
        .getElementsByTagName(TableLastRowElement.ELEMENT_NAME
            .getQName());
    if (elements != null && elements.getLength() > 0) {
      TableLastRowElement ele = (TableLastRowElement) elements.item(0);
      ele.setTableStyleNameAttribute(tableStyleNameValue);
      ele
          .setTableParagraphStyleNameAttribute(tableParagraphStyleNameValue);
    } else {
      TableLastRowElement ele = mElement
          .newTableLastRowElement(tableStyleNameValue);
      ele
          .setTableParagraphStyleNameAttribute(tableParagraphStyleNameValue);
    }
  }
View Full Code Here

TOP

Related Classes of org.odftoolkit.odfdom.dom.element.table.TableLastRowElement

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.