Package jexer
Class TTableWidget.Row
- java.lang.Object
-
- jexer.TTableWidget.Row
-
- Enclosing class:
- TTableWidget
public class TTableWidget.Row extends java.lang.Object
Row represents a row of cells.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(TTableWidget.Cell cell)
Add an entry to this column.TTableWidget.Cell
get(int column)
Get an entry from this row.int
getY()
Get the Y position of the cells in this column.void
setY(int y)
Set the Y position of the cells in this column.
-
-
-
Method Detail
-
add
public void add(TTableWidget.Cell cell)
Add an entry to this column.- Parameters:
cell
- the cell to add
-
get
public TTableWidget.Cell get(int column)
Get an entry from this row.- Parameters:
column
- the entry index to get- Returns:
- the cell at column
-
getY
public int getY()
Get the Y position of the cells in this column.- Returns:
- the position
-
setY
public void setY(int y)
Set the Y position of the cells in this column.- Parameters:
y
- the position
-
-