Package | Description |
---|---|
org.fireweb.html |
Modifier and Type | Class and Description |
---|---|
class |
TableHeadCell
The <th> tag defines a header cell in an HTML table.
|
Modifier and Type | Method and Description |
---|---|
TableCell |
TableRow.getCell(int column)
Get table cell at column in this row.
|
TableCell |
Table.getCell(int row,
int column)
Returns table cell at given row and column
|
TableCell |
TableRow.inserColumn(int column)
Inserts column into row.
|
TableCell |
TableCell.setAlign(TableCell.Align align) |
TableCell |
Table.setCell(int row,
int column)
Set new instance of empty cell at table in given row and column
|
TableCell |
TableCell.setColSpan(java.lang.Integer colSpan) |
TableCell |
TableCell.setRowSpan(java.lang.Integer rowSpan) |
TableCell |
TableCell.setVerticalAlign(TableCell.VerticalAlign verticalAlign) |
TableCell |
TableCell.setWidth(Length width) |
Modifier and Type | Method and Description |
---|---|
TableRow |
TableRow.inserColumn(int column,
TableCell tableCell)
Insert column number at row
|
TableRow |
TableRow.removeCell(TableCell tableCell)
Remove cell at row (column).
|
Table |
Table.removeCell(TableCell tableCell)
Remove cell instance from table
|
Table |
Table.setCell(int row,
int column,
TableCell tableCell)
Set cell at table in given row and column
|
TableRow |
TableRow.setCell(int column,
TableCell tableCell)
Puts given table cell at column.
|