Method Summary |
|
public void | add(Object item) Adds an item at the end of the model. |
public void | add(int index, Object item) Inserts an item at the specified index. |
public Object | get(int index) Returns the item at the specified index in the list. |
public int | indexOf(Object item) Returns the index of the specified item. |
public void | remove(int index) Removes the item at the specified index from the model. |
public void | remove(Object item) Removes the specified item from the model. |
public void | removeAll() Removes all items from the model. |
public int | size() Returns the length of the list. |