|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Table | |
---|---|
org.odftoolkit.simple | Provide high level methods to frequently used ODF documents. |
org.odftoolkit.simple.common.navigation | Provide classes to operate the content and style of the selected text content. |
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. |
Table |
TextDocument.insertTable(Paragraph referenceParagraph,
Table sourceTable,
boolean before)
Copy a Table and insert it before or after the Reference Paragraph in the text document, whether the Table is in this TextDocument or in a different Document. |
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. |
Table |
TextDocument.insertTable(Paragraph referenceParagraph,
Table sourceTable,
boolean before)
Copy a Table and insert it before or after the Reference Paragraph in the text document, whether the Table is in this TextDocument or in a different Document. |
Uses of Table in org.odftoolkit.simple.common.navigation |
---|
Methods in org.odftoolkit.simple.common.navigation that return Table | |
---|---|
Table |
TextSelection.replaceWith(Table newTable)
Replace the text content of selection with a new Table. |
Table |
TableSelection.replaceWithTable(Table table)
Replace the content with a Table , the table can be in the same TextDocument or in a different Document. |
Methods in org.odftoolkit.simple.common.navigation with parameters of type Table | |
---|---|
Table |
TextSelection.replaceWith(Table newTable)
Replace the text content of selection with a new Table. |
Table |
TableSelection.replaceWithTable(Table table)
Replace the content with a Table , the table can be in the same TextDocument or in a different Document. |
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 |
AbstractTableContainer.addTable()
Add a new Table to this container. |
Table |
TableContainer.addTable()
Add a new Table to this container. |
Table |
AbstractTableContainer.addTable(int numRows,
int numCols)
Add a new Table to this container with a specified row number and column number. |
Table |
TableContainer.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 |
Column.getTable()
Get owner table of the current column. |
Table |
Cell.getTable()
Get an instance of table feature which contains this cell. |
Table |
CellRange.getTable()
Get the Table instance who contains this cell range. |
Table |
Row.getTable()
Get owner table of the current row. |
Table |
AbstractTableContainer.getTableByName(String name)
Return an instance of table feature with the specific table name. |
Table |
TableContainer.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> |
AbstractTableContainer.getTableList()
Return a list of table features in this container. |
List<Table> |
TableContainer.getTableList()
Return a list of table features in this document. |
Methods in org.odftoolkit.simple.table with parameters of type Table | |
---|---|
static void |
RepeatedNumberUtils.removeDummyCellsFromTable(Table table)
Remove unused columns and rows from the end of a table. |
Uses of Table in org.odftoolkit.simple.text |
---|
Methods in org.odftoolkit.simple.text that return Table | |
---|---|
Table |
Section.addTable()
|
Table |
Footer.addTable()
|
Table |
Header.addTable()
|
Table |
Section.addTable(int numRows,
int numCols)
|
Table |
Footer.addTable(int numRows,
int numCols)
|
Table |
Header.addTable(int numRows,
int numCols)
|
Table |
Section.getTableByName(String name)
|
Table |
Footer.getTableByName(String name)
|
Table |
Header.getTableByName(String name)
|
Methods in org.odftoolkit.simple.text that return types with arguments of type Table | |
---|---|
List<Table> |
Section.getTableList()
|
List<Table> |
Footer.getTableList()
|
List<Table> |
Header.getTableList()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |