public interface ITable<T extends ITable<T>>
| Modifier and Type | Method and Description |
|---|---|
ICell |
getCell(int column,
int row) |
T |
getColumn(int column) |
T |
getColumns(int from) |
T |
getColumns(int from,
int to) |
int |
getHeight() |
T |
getRow(int row) |
T |
getRows(int from) |
T |
getRows(int from,
int to) |
T |
getSubtable(int column,
int row,
int width,
int height) |
int |
getWidth() |
boolean |
isNormalOrientation() |
T |
transpose() |
int getWidth()
int getHeight()
boolean isNormalOrientation()
transpose() and TransposedGridTable.ICell getCell(int column, int row)
column - row - T getColumn(int column)
column - ITable by it`s index.T getColumns(int from)
from - ITable from given index and till the right last column, including
borders.T getColumns(int from, int to)
from - to - ITable from given start index and till the given end.T getRows(int from)
from - ITable from given index and till the bottom row, including borders.T getRows(int from, int to)
from - to - ITable from given start index and till the given end.T getSubtable(int column, int row, int width, int height)
column - from which we want to take the subtable, including border.row - from which we want to take the subtable, including border.width - of the needed table.height - of the needed table.T transpose()
TransposedGridTable.Copyright © 2004–2019 OpenL Tablets. All rights reserved.