Class TreeListenerCollection

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<TreeListener>
com.google.gwt.user.client.ui.TreeListenerCollection
All Implemented Interfaces:
Serializable, Cloneable, Iterable<TreeListener>, Collection<TreeListener>, List<TreeListener>, RandomAccess

@Deprecated public class TreeListenerCollection extends ArrayList<TreeListener>
Deprecated.
Widgets should now manage their own handlers via Widget.addDomHandler(H, com.google.gwt.event.dom.client.DomEvent.Type<H>)
A helper class for implementers of the SourcesClickEvents interface. This subclass of ArrayList assumes that all objects added to it will be of type ClickListener.
See Also:
  • Constructor Details

    • TreeListenerCollection

      public TreeListenerCollection()
      Deprecated.
  • Method Details

    • fireItemSelected

      public void fireItemSelected(TreeItem item)
      Deprecated.
      Fires a "tree item selected" event to all listeners.
      Parameters:
      item - the tree item being selected.
    • fireItemStateChanged

      public void fireItemStateChanged(TreeItem item)
      Deprecated.
      Fires a "tree item state changed" event to all listeners.
      Parameters:
      item - the tree item whose state has changed.