Class FocusListenerCollection

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

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

    • FocusListenerCollection

      public FocusListenerCollection()
      Deprecated.
  • Method Details

    • fireFocus

      public void fireFocus(Widget sender)
      Deprecated.
      Fires a focus event to all listeners.
      Parameters:
      sender - the widget sending the event.
    • fireFocusEvent

      public void fireFocusEvent(Widget sender, Event event)
      Deprecated.
      A helper for widgets that source focus events.
      Parameters:
      sender - the widget sending the event.
      event - the DOM event received by the widget.
    • fireLostFocus

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