Package jexer
Class TTableWidget.Column
- java.lang.Object
-
- jexer.TTableWidget.Column
-
- Enclosing class:
- TTableWidget
public class TTableWidget.Column extends java.lang.Object
Column represents a column 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 row)
Get an entry from this column.int
getX()
Get the X position of the cells in this column.void
setX(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
-
-