public class WidgetCollection extends Object implements Iterable<Widget>
panels
and
composites
.
The main purpose of this specialized collection is to implement
Iterator.remove()
in a way that delegates removal to its
panel. This makes it much easier for the panel to implement an
iterator
that
supports removal of widgets.
Constructor and Description |
---|
WidgetCollection(HasWidgets parent)
Constructs a new widget collection.
|
Modifier and Type | Method and Description |
---|---|
void |
add(Widget w)
Adds a widget to the end of this collection.
|
boolean |
contains(Widget w)
Determines whether a given widget is contained in this collection.
|
Widget |
get(int index)
Gets the widget at the given index.
|
int |
indexOf(Widget w)
Gets the index of the specified index.
|
void |
insert(Widget w,
int beforeIndex)
Inserts a widget before the specified index.
|
Iterator<Widget> |
iterator()
Gets an iterator on this widget collection.
|
void |
remove(int index)
Removes the widget at the specified index.
|
void |
remove(Widget w)
Removes the specified widget.
|
int |
size()
Gets the number of widgets in this collection.
|
forEach, spliterator
public WidgetCollection(HasWidgets parent)
parent
- the container whose HasWidgets.remove(Widget)
will be
delegated to by the iterator's Iterator.remove()
method.public void add(Widget w)
w
- the widget to be addedpublic boolean contains(Widget w)
w
- the widget to be searched fortrue
if the widget is presentpublic Widget get(int index)
index
- the index to be retrievedIndexOutOfBoundsException
- if the index is out of rangepublic int indexOf(Widget w)
w
- the widget to be found-1
if it is
not foundpublic void insert(Widget w, int beforeIndex)
w
- the widget to be insertedbeforeIndex
- the index before which the widget will be insertedIndexOutOfBoundsException
- if beforeIndex
is out of
rangepublic Iterator<Widget> iterator()
HasWidgets
.public void remove(int index)
index
- the index of the widget to be removedIndexOutOfBoundsException
- if index
is out of rangepublic void remove(Widget w)
w
- the widget to be removedNoSuchElementException
- if the widget is not presentpublic int size()
Copyright © 2018. All rights reserved.