Package | Description |
---|---|
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.
|
Modifier and Type | Method and Description |
---|---|
OdfTable |
OdfDocument.getTableByName(String name)
Return an instance of table feature with the specific table name.
|
Modifier and Type | Method and Description |
---|---|
List<OdfTable> |
OdfDocument.getTableList()
Return a list of table features in this document.
|
Modifier and Type | Method and Description |
---|---|
static OdfTable |
OdfTable.getInstance(TableTableElement odfElement)
Deprecated.
Get a table feature instance by an instance of
TableTableElement . |
OdfTable |
OdfTableColumn.getTable()
Deprecated.
Get owner table of the current column.
|
OdfTable |
OdfTableRow.getTable()
Deprecated.
Get owner table of the current row.
|
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-2013 The Apache Software Foundation. All Rights Reserved.