Package | Description |
---|---|
com.google.gwt.user.client.ui |
Widgets, Panels, and other user-interface classes.
|
Modifier and Type | Method and Description |
---|---|
TreeItem |
HasTreeItems.ForIsWidget.addItem(IsWidget w) |
TreeItem |
Tree.addItem(IsWidget w)
Overloaded version for IsWidget.
|
TreeItem |
TreeItem.addItem(SafeHtml itemHtml)
Adds a child tree item containing the specified html.
|
TreeItem |
HasTreeItems.addItem(SafeHtml itemHtml)
Adds a simple tree item containing the specified html.
|
TreeItem |
Tree.addItem(SafeHtml itemHtml)
Adds a simple tree item containing the specified html.
|
TreeItem |
TreeItem.addItem(Widget widget)
Adds a child tree item containing the specified widget.
|
TreeItem |
HasTreeItems.addItem(Widget widget)
Adds a new tree item containing the specified widget.
|
TreeItem |
Tree.addItem(Widget widget)
Adds a new tree item containing the specified widget.
|
TreeItem |
TreeItem.addTextItem(String itemText)
Adds a child tree item containing the specified text.
|
TreeItem |
HasTreeItems.addTextItem(String itemText)
Adds a simple tree item containing the specified text.
|
TreeItem |
Tree.addTextItem(String itemText)
Adds a simple tree item containing the specified text.
|
TreeItem |
TreeItem.asTreeItem() |
TreeItem |
IsTreeItem.asTreeItem()
Returns the
TreeItem aspect of the receiver. |
TreeItem |
TreeItem.getChild(int index)
Gets the child at the specified index.
|
TreeItem |
Tree.getItem(int index)
Gets the top-level tree item at the specified index.
|
TreeItem |
TreeItem.getParentItem()
Gets this item's parent.
|
TreeItem |
Tree.getSelectedItem()
Gets the currently selected item.
|
TreeItem |
TreeItem.insertItem(int beforeIndex,
SafeHtml itemHtml)
Inserts a child tree item at the specified index containing the specified
html.
|
TreeItem |
Tree.insertItem(int beforeIndex,
SafeHtml itemHtml)
Inserts a child tree item at the specified index containing the specified
html.
|
TreeItem |
TreeItem.insertItem(int beforeIndex,
Widget widget)
Inserts a child tree item at the specified index containing the specified
widget.
|
TreeItem |
Tree.insertItem(int beforeIndex,
Widget widget)
Inserts a child tree item at the specified index containing the specified
widget.
|
TreeItem |
TreeItem.insertTextItem(int beforeIndex,
String itemText)
Inserts a child tree item at the specified index containing the specified
text.
|
TreeItem |
Tree.insertTextItem(int beforeIndex,
String itemText)
Inserts a child tree item at the specified index containing the specified
text.
|
Modifier and Type | Method and Description |
---|---|
Iterator<TreeItem> |
Tree.treeItemIterator()
Iterator of tree items.
|
Modifier and Type | Method and Description |
---|---|
void |
TreeItem.addItem(TreeItem item)
Adds another item as a child to this one.
|
void |
HasTreeItems.addItem(TreeItem item)
Adds an tree item.
|
void |
Tree.addItem(TreeItem item)
Adds an item to the root level of this tree.
|
void |
TreeListenerCollection.fireItemSelected(TreeItem item)
Deprecated.
Fires a "tree item selected" event to all listeners.
|
void |
TreeListenerCollection.fireItemStateChanged(TreeItem item)
Deprecated.
Fires a "tree item state changed" event to all listeners.
|
int |
TreeItem.getChildIndex(TreeItem child)
Gets the index of the specified child item.
|
void |
TreeItem.insertItem(int beforeIndex,
TreeItem item)
Inserts an item as a child to this one.
|
void |
Tree.insertItem(int beforeIndex,
TreeItem item)
Inserts an item into the root level of this tree.
|
protected boolean |
Tree.isKeyboardNavigationEnabled(TreeItem currentItem)
Indicates if keyboard navigation is enabled for the Tree and for a given
TreeItem.
|
void |
TreeListener.onTreeItemSelected(TreeItem item)
Deprecated.
|
void |
TreeListener.onTreeItemStateChanged(TreeItem item)
|
void |
TreeItem.removeItem(TreeItem item)
Removes one of this item's children.
|
void |
HasTreeItems.removeItem(TreeItem item)
Removes an item.
|
void |
Tree.removeItem(TreeItem item)
Removes an item from the root level of this tree.
|
void |
Tree.setSelectedItem(TreeItem item)
Selects a specified item.
|
void |
Tree.setSelectedItem(TreeItem item,
boolean fireEvents)
Selects a specified item.
|
Modifier and Type | Method and Description |
---|---|
HandlerRegistration |
Tree.addCloseHandler(CloseHandler<TreeItem> handler) |
HandlerRegistration |
Tree.addOpenHandler(OpenHandler<TreeItem> handler) |
HandlerRegistration |
Tree.addSelectionHandler(SelectionHandler<TreeItem> handler) |
Copyright © 2018. All rights reserved.