Uses of Class
org.odftoolkit.odfdom.doc.table.OdfTable

Packages that use OdfTable
org.odftoolkit.odfdom.doc The "Document Layer" exisit for usability reasons, it gives a feature based view on the document model. 
org.odftoolkit.odfdom.doc.table Provide convenient methods to manipulate table in ODF text and spreadsheet document. 
 

Uses of OdfTable in org.odftoolkit.odfdom.doc
 

Methods in org.odftoolkit.odfdom.doc that return OdfTable
 OdfTable OdfDocument.getTableByName(String name)
          Return an instance of table feature with the specific table name.
 

Methods in org.odftoolkit.odfdom.doc that return types with arguments of type OdfTable
 List<OdfTable> OdfDocument.getTableList()
          Return a list of table features in this document.
 

Uses of OdfTable in org.odftoolkit.odfdom.doc.table
 

Methods in org.odftoolkit.odfdom.doc.table that return OdfTable
static OdfTable OdfTable.getInstance(TableTableElement odfElement)
          Deprecated. Get a table feature instance by an instance of TableTableElement.
 OdfTable OdfTableRow.getTable()
          Deprecated. Get owner table of the current row.
 OdfTable OdfTableColumn.getTable()
          Deprecated. Get owner table of the current column.
 OdfTable OdfTableCellRange.getTable()
          Deprecated. Get the OdfTable instance who contains this cell range.
 OdfTable OdfTableCell.getTable()
          Deprecated. Get an instance of table feature which contains this cell.
static OdfTable OdfTable.newTable(OdfDocument document)
          Deprecated. Construct the OdfTable feature.
static OdfTable OdfTable.newTable(OdfDocument document, int numRows, int numCols)
          Deprecated. Construct the OdfTable feature with a specified row number and column number.
static OdfTable OdfTable.newTable(OdfDocument document, int numRows, int numCols, int headerRowNumber, int headerColumnNumber)
          Deprecated. Construct the OdfTable feature with a specified 2 dimension array as the data of this table.
static OdfTable OdfTable.newTable(OdfDocument document, String[] rowLabel, String[] columnLabel, double[][] data)
          Deprecated. Construct the OdfTable feature with a specified 2 dimension array as the data of this table.
static OdfTable OdfTable.newTable(OdfDocument document, String[] rowLabel, String[] columnLabel, String[][] data)
          Deprecated. Construct the OdfTable feature with a specified 2 dimension array as the data of this table.
static OdfTable OdfTable.newTable(OdfElement tableParent)
          Deprecated. Construct the OdfTable feature.
static OdfTable OdfTable.newTable(OdfElement tableParent, int numRows, int numCols)
          Deprecated. Construct the OdfTable feature with a specified row number and column number.
static OdfTable OdfTable.newTable(OdfElement tableParent, int numRows, int numCols, int headerRowNumber, int headerColumnNumber)
          Deprecated. Construct the OdfTable feature with a specified row number, column number, header row number, header column number.
static OdfTable OdfTable.newTable(OdfElement tableParent, String[] rowLabel, String[] columnLabel, double[][] data)
          Deprecated. Construct the OdfTable feature with a specified 2 dimension array as the data of this table.
static OdfTable OdfTable.newTable(OdfElement tableParent, String[] rowLabel, String[] columnLabel, String[][] data)
          Deprecated. Construct the OdfTable feature with a specified 2 dimension array as the data of this table.
 



Copyright © 2008-2011 The Apache Software Foundation. All Rights Reserved.