public interface ListModel
GDK enhancements for ListModel.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public Object |
getAt(int index)Support the subscript operator for ListModel. |
|
public Iterator<?> |
iterator()Returns an Iterator which traverses the ListModel one element at a time. |
|
public int |
size()Provide the standard Groovy size() method for ListModel. |
Support the subscript operator for ListModel.
index - the index of the element to getReturns an Iterator which traverses the ListModel one element at a time.
Provide the standard Groovy size() method for ListModel.