Java com.google.gwt.user.client.ui WidgetCollection fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.user.client.ui WidgetCollection fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.user.client.ui WidgetCollection.

The text is from its open source code.

Field

intsize

Constructor

WidgetCollection(HasWidgets parent)
Constructs a new widget collection.

Method

voidadd(Widget w)
Adds a widget to the end of this collection.
Widgetget get(int index)
Gets the widget at the given index.
intindexOf(Widget w)
Gets the index of the specified index.
voidinsert(Widget w, int beforeIndex)
Inserts a widget before the specified index.
Iteratoriterator()
Gets an iterator on this widget collection.
voidremove(int index)
Removes the widget at the specified index.
voidremove(Widget w)
Removes the specified widget.