Class ClickListenerCollection

java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<ClickListener>
com.google.gwt.user.client.ui.ClickListenerCollection
All Implemented Interfaces:
Serializable, Cloneable, Iterable<ClickListener>, Collection<ClickListener>, List<ClickListener>, RandomAccess
Direct Known Subclasses:
DelegatingClickListenerCollection

@Deprecated public class ClickListenerCollection extends ArrayList<ClickListener>
Deprecated.
As of GWT 1.6, call addDomHandler(myHandler, ClickEvent.getType()) to manage handlers for your widget instead
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

    • ClickListenerCollection

      public ClickListenerCollection()
      Deprecated.
  • Method Details

    • fireClick

      public void fireClick(Widget sender)
      Deprecated.
      Fires a click event to all listeners.
      Parameters:
      sender - the widget sending the event.