| java.lang.Object com.google.gwt.user.client.ui.WidgetIterators
WidgetIterators | class WidgetIterators (Code) | | A collection of convenience factories for creating iterators for widgets.
This mostly helps developers support
HasWidgets without having to
implement their own
Iterator .
|
createWidgetIterator | final static Iterator<Widget> createWidgetIterator(HasWidgets container, Widget[] contained)(Code) | | Wraps an array of widgets to be returned during iteration.
null is allowed in the array and will be skipped during
iteration.
Parameters: container - the container of the widgets in contained Parameters: contained - the array of widgets the iterator |
|
|