Uses of Class
org.odftoolkit.simple.table.Table

Packages that use Table
org.odftoolkit.simple Provide high level methods to frequently used ODF documents. 
org.odftoolkit.simple.table Provide convenient methods to manipulate table in ODF text and spreadsheet document. 
 

Uses of Table in org.odftoolkit.simple
 

Methods in org.odftoolkit.simple that return Table
 Table Document.getTableByName(String name)
          Return an instance of table feature with the specific table name.
 

Methods in org.odftoolkit.simple that return types with arguments of type Table
 List<Table> Document.getTableList()
          Return a list of table features in this document.
 

Uses of Table in org.odftoolkit.simple.table
 

Methods in org.odftoolkit.simple.table that return Table
static Table Table.getInstance(TableTableElement odfElement)
          Get a table feature instance by an instance of TableTableElement.
 Table Row.getTable()
          Get owner table of the current row.
 Table Column.getTable()
          Get owner table of the current column.
 Table CellRange.getTable()
          Get the Table instance who contains this cell range.
 Table Cell.getTable()
          Get an instance of table feature which contains this cell.
 Table Table.TableBuilder.getTableInstance(TableTableElement odfElement)
          Get a table feature instance by an instance of TableTableElement.
 Table Table.TableBuilder.newTable()
          Construct the Table feature.
static Table Table.newTable(Document document)
          Construct the Table feature.
static Table Table.newTable(Document document, int numRows, int numCols)
          Construct the Table feature with a specified row number and column number.
static Table Table.newTable(Document document, int numRows, int numCols, int headerRowNumber, int headerColumnNumber)
          Construct the Table feature with a specified row number, column number, header row number, header column number.
static Table Table.newTable(Document document, String[] rowLabel, String[] columnLabel, double[][] data)
          Construct the Table feature with a specified 2 dimension array as the data of this table.
static Table Table.newTable(Document document, String[] rowLabel, String[] columnLabel, String[][] data)
          Construct the Table feature with a specified 2 dimension array as the data of this table.
 Table Table.TableBuilder.newTable(int numRows, int numCols)
          Construct the Table feature with a specified row number and column number.
 Table Table.TableBuilder.newTable(int numRows, int numCols, int headerRowNumber, int headerColumnNumber)
          Construct the Table feature with a specified row number, column number, header row number, header column number.
 Table Table.TableBuilder.newTable(String[] rowLabel, String[] columnLabel, double[][] data)
          Construct the Table feature with a specified 2 dimension array as the data of this table.
 Table Table.TableBuilder.newTable(String[] rowLabel, String[] columnLabel, String[][] data)
          Construct the Table feature with a specified 2 dimension array as the data of this table.
 



Copyright © 2010-2011 ODF Toolkit Project. All Rights Reserved.