Method Summary |
|
public void | add(Widget w) Adds a widget to the end of this collection. |
public boolean | contains(Widget w) Determines whether a given widget is contained in this collection. |
public Widget | get(int index) Gets the widget at the given index. |
public int | indexOf(Widget w) Gets the index of the specified index. |
public void | insert(Widget w, int beforeIndex) Inserts a widget before the specified index. |
public Iterator<Widget> | iterator() Gets an iterator on this widget collection. |
public void | remove(int index) Removes the widget at the specified index. |
public void | remove(Widget w) Removes the specified widget. |
public int | size() Gets the number of widgets in this collection. |