Uses of Class
com.google.gwt.widgetideas.client.FastTreeItem

Packages that use FastTreeItem
com.google.gwt.libideas.logging.client   
com.google.gwt.widgetideas.client   
 

Uses of FastTreeItem in com.google.gwt.libideas.logging.client
 

Methods in com.google.gwt.libideas.logging.client that return FastTreeItem
 FastTreeItem TreeLogHandler.getChild(HasFastTreeItems parent, java.lang.String childName)
           
 

Uses of FastTreeItem in com.google.gwt.widgetideas.client
 

Subclasses of FastTreeItem in com.google.gwt.widgetideas.client
 class ListeningFastTreeItem
          Convenience class used to allow IDE users to quickly override the event methods on FastTreeItem.
 

Methods in com.google.gwt.widgetideas.client that return FastTreeItem
 FastTreeItem FastTreeItem.addItem(java.lang.String itemText)
           
 FastTreeItem FastTree.addItem(java.lang.String itemText)
          Adds a simple tree item containing the specified text.
 FastTreeItem HasFastTreeItems.addItem(java.lang.String itemText)
          Adds a child tree item containing the specified text.
 FastTreeItem FastTreeItem.addItem(com.google.gwt.user.client.ui.Widget widget)
           
 FastTreeItem FastTree.addItem(com.google.gwt.user.client.ui.Widget widget)
          Adds a new tree item containing the specified widget.
 FastTreeItem HasFastTreeItems.addItem(com.google.gwt.user.client.ui.Widget widget)
          Adds a child tree item containing the specified widget.
 FastTreeItem FastTreeItem.getChild(int index)
           
 FastTreeItem FastTree.getChild(int index)
           
 FastTreeItem HasFastTreeItems.getChild(int index)
          Gets the child at the specified index.
 FastTreeItem FastTree.getItem(int index)
          Gets the top-level tree item at the specified index.
 FastTreeItem FastTreeItem.getParentItem()
          Gets this item's parent.
protected  FastTreeItem FastTree.getRoot()
           
 FastTreeItem FastTree.getSelectedItem()
          Gets the currently selected item.
 

Methods in com.google.gwt.widgetideas.client with parameters of type FastTreeItem
 void FastTreeItem.addItem(FastTreeItem item)
           
 void FastTree.addItem(FastTreeItem item)
          Adds an item to the root level of this tree.
 void HasFastTreeItems.addItem(FastTreeItem item)
          Adds another item as a child to this one.
 int FastTreeItem.getChildIndex(FastTreeItem child)
           
 int FastTree.getChildIndex(FastTreeItem child)
           
 int HasFastTreeItems.getChildIndex(FastTreeItem child)
          Gets the index of the specified child item.
protected  void FastTree.moveSelectionBar(FastTreeItem item)
          Moves the selection bar around the given FastTreeItem.
protected  void FastTree.onSelection(FastTreeItem item, boolean fireEvents, boolean moveFocus)
           
 void FastTreeItem.removeItem(FastTreeItem item)
          Removes an item from the tree.
 void FastTree.removeItem(FastTreeItem item)
          Removes an item from the root level of this tree.
 void HasFastTreeItems.removeItem(FastTreeItem item)
          Removes one of this item's children.
 void FastTree.setSelectedItem(FastTreeItem item)
          Selects a specified item.
 void FastTree.setSelectedItem(FastTreeItem item, boolean fireEvents)
          Selects a specified item.