public interface TableColumnModel
GDK enhancements for TableColumnModel.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public TableColumn |
getAt(int index)Support the subscript operator for TableColumnModel. |
|
public Iterator<TableColumn> |
iterator()Returns an Iterator which traverses the TableColumnModel one TableColumn at a time. |
|
public TableColumnModel |
leftShift(TableColumn column)Overloads the left shift operator to provide an easy way to add columns to a TableColumnModel. |
|
public int |
size()Provide the standard Groovy size() method for TableColumnModel. |
Support the subscript operator for TableColumnModel.
index - the index of the column to getReturns an Iterator which traverses the TableColumnModel one TableColumn at a time.
Overloads the left shift operator to provide an easy way to add columns to a TableColumnModel.
column - a TableColumn to be added to the model. Provide the standard Groovy size() method for TableColumnModel.