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.presentation Provide high level methods to ODF presentation documents. 
org.odftoolkit.simple.table Provide convenient methods to manipulate table in ODF text and spreadsheet document. 
org.odftoolkit.simple.text Provide convenient methods to manipulate frequently used structures in ODF text document, such as list and section. 
 

Uses of Table in org.odftoolkit.simple
 

Methods in org.odftoolkit.simple that return Table
 Table Document.addTable()
           
 Table Document.addTable(int numRows, int numCols)
           
 Table SpreadsheetDocument.appendSheet(String name)
          Adds a new blank sheet with the specified name to this document.
 Table SpreadsheetDocument.appendSheet(Table refTable, String name)
          Adds a new sheet with data from existing table.
 Table SpreadsheetDocument.getSheetByIndex(int index)
          Retrieves sheet by index.
 Table SpreadsheetDocument.getSheetByName(String name)
          Retrieves sheet by name.
 Table Document.getTableByName(String name)
           
 Table SpreadsheetDocument.insertSheet(int before)
          Inserts a new blank sheet before the reference index.
 Table SpreadsheetDocument.insertSheet(Table refTable, int before)
          Inserts a new sheet with data from existing table.
 

Methods in org.odftoolkit.simple that return types with arguments of type Table
 List<Table> Document.getTableList()
           
 

Methods in org.odftoolkit.simple with parameters of type Table
 Table SpreadsheetDocument.appendSheet(Table refTable, String name)
          Adds a new sheet with data from existing table.
 Table SpreadsheetDocument.insertSheet(Table refTable, int before)
          Inserts a new sheet with data from existing table.
 

Uses of Table in org.odftoolkit.simple.presentation
 

Methods in org.odftoolkit.simple.presentation that return Table
 Table Slide.addTable()
           
 Table Slide.addTable(int numRows, int numCols)
           
 Table Slide.getTableByName(String name)
           
 

Methods in org.odftoolkit.simple.presentation that return types with arguments of type Table
 List<Table> Slide.getTableList()
           
 

Uses of Table in org.odftoolkit.simple.table
 

Methods in org.odftoolkit.simple.table that return Table
 Table TableContainer.addTable()
          Add a new Table to this container.
 Table AbstractTableContainer.addTable()
          Add a new Table to this container.
 Table TableContainer.addTable(int numRows, int numCols)
          Add a new Table to this container with a specified row number and column number.
 Table AbstractTableContainer.addTable(int numRows, int numCols)
          Add a new Table to this container with a specified row number and column number.
static Table Table.getInstance(TableTableElement element)
          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 TableContainer.getTableByName(String name)
          Return an instance of table feature with the specific table name.
 Table AbstractTableContainer.getTableByName(String name)
          Return an instance of table feature with the specific table name.
 Table Table.TableBuilder.getTableInstance(TableTableElement odfElement)
          Get a table feature instance by an instance of TableTableElement.
 Table Table.TableBuilder.newTable()
          Construct the Table feature.
 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(int numRows, int numCols, int headerRowNumber, int headerColumnNumber, double marginLeft, double marginRight)
          Construct the Table feature with a specified row number, column number, header row number, header column number, left margin space and right margin space.
 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.
static Table Table.newTable(TableContainer tableContainer)
          Construct the Table feature.
static Table Table.newTable(TableContainer tableContainer, int numRows, int numCols)
          Construct the Table feature with a specified row number and column number.
static Table Table.newTable(TableContainer tableContainer, int numRows, int numCols, double marginLeft, double marginRight)
          Construct the Table feature with a specified row number and column number.
static Table Table.newTable(TableContainer tableContainer, 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(TableContainer tableContainer, 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(TableContainer tableContainer, String[] rowLabel, String[] columnLabel, String[][] data)
          Construct the Table feature with a specified 2 dimension array as the data of this table.
 

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

Uses of Table in org.odftoolkit.simple.text
 

Methods in org.odftoolkit.simple.text that return Table
 Table Header.addTable()
           
 Table Footer.addTable()
           
 Table Header.addTable(int numRows, int numCols)
           
 Table Footer.addTable(int numRows, int numCols)
           
 Table Header.getTableByName(String name)
           
 Table Footer.getTableByName(String name)
           
 

Methods in org.odftoolkit.simple.text that return types with arguments of type Table
 List<Table> Header.getTableList()
           
 List<Table> Footer.getTableList()
           
 



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