public abstract class

HandlesAllFocusEvents

extends Object
implements BlurHandler FocusHandler
java.lang.Object
   ↳ com.google.gwt.event.dom.client.HandlesAllFocusEvents

Class Overview

Receiver used to handle all focus events at once.

Summary

Public Constructors
HandlesAllFocusEvents()
Constructor.
Public Methods
void handle(HasAllFocusHandlers source)
Convenience method to handle both focus and blur events from an event source.
static <H extends BlurHandler & FocusHandler> void handle(HasAllFocusHandlers eventSource, H reciever)
Convenience method used to handle both focus and blur events from an event source.
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.google.gwt.event.dom.client.BlurHandler
From interface com.google.gwt.event.dom.client.FocusHandler

Public Constructors

public HandlesAllFocusEvents ()

Constructor.

Public Methods

public void handle (HasAllFocusHandlers source)

Convenience method to handle both focus and blur events from an event source.

Parameters
source the event source

public static void handle (HasAllFocusHandlers eventSource, H reciever)

Convenience method used to handle both focus and blur events from an event source.

Parameters
eventSource the event source
reciever the receiver implementing both focus and blur handlers