Package jexer
Class TTable.Row
- java.lang.Object
-
- jexer.TTable.Row
-
- Enclosing class:
- TTable
public class TTable.Row extends java.lang.ObjectRow represents a row of cells.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(TTable.Cell cell)Add an entry to this column.TTable.Cellget(int column)Get an entry from this row.intgetY()Get the Y position of the cells in this column.voidsetY(int y)Set the Y position of the cells in this column.
-
-
-
Method Detail
-
add
public void add(TTable.Cell cell)
Add an entry to this column.- Parameters:
cell- the cell to add
-
get
public TTable.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
-
-