| com.google.gwt.user.client.ui.IndexedPanel
All known Subclasses: com.google.gwt.user.client.ui.ComplexPanel, com.google.gwt.user.client.ui.TabPanel,
IndexedPanel | public interface IndexedPanel (Code) | | A panel that imposes an explicit ordering on its children.
|
Method Summary | |
Widget | getWidget(int index) Gets the child widget at the specified index. | int | getWidgetCount() Gets the number of child widgets in this panel. | int | getWidgetIndex(Widget child) Gets the index of the specified child widget. | boolean | remove(int index) Removes the widget at the specified index. |
getWidget | Widget getWidget(int index)(Code) | | Gets the child widget at the specified index.
Parameters: index - the child widget's index the child widget |
getWidgetCount | int getWidgetCount()(Code) | | Gets the number of child widgets in this panel.
the number of children |
getWidgetIndex | int getWidgetIndex(Widget child)(Code) | | Gets the index of the specified child widget.
Parameters: child - the widget to be found the widget's index, or -1 if it is not a child ofthis panel |
remove | boolean remove(int index)(Code) | | Removes the widget at the specified index.
Parameters: index - the index of the widget to be removed false if the widget is not present |
|
|