Package jexer
Class TTable.Column
- java.lang.Object
-
- jexer.TTable.Column
-
- Enclosing class:
- TTable
public class TTable.Column extends java.lang.ObjectColumn represents a column 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 row)Get an entry from this column.intgetX()Get the X position of the cells in this column.voidsetX(int x)Set the X 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 row)
Get an entry from this column.- Parameters:
row- the entry index to get- Returns:
- the cell at row
-
getX
public int getX()
Get the X position of the cells in this column.- Returns:
- the position
-
setX
public void setX(int x)
Set the X position of the cells in this column.- Parameters:
x- the position
-
-