Package jexer
Class TTableWidget.Column
- java.lang.Object
-
- jexer.TTableWidget.Column
-
- Enclosing class:
- TTableWidget
public class TTableWidget.Column extends java.lang.ObjectColumn represents a column of cells.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(TTableWidget.Cell cell)Add an entry to this column.TTableWidget.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(TTableWidget.Cell cell)
Add an entry to this column.- Parameters:
cell- the cell to add
-
get
public TTableWidget.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
-
-