Class LoadListenerCollection

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

@Deprecated public class LoadListenerCollection extends ArrayList<LoadListener>
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 SourcesLoadEvents interface. This subclass of ArrayList assumes that all objects added to it will be of type LoadListener.
See Also:
  • Constructor Details

    • LoadListenerCollection

      public LoadListenerCollection()
      Deprecated.
  • Method Details

    • fireError

      public void fireError(Widget sender)
      Deprecated.
      Fires an error event to all listeners.
      Parameters:
      sender - the widget sending the event.
    • fireLoad

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