public interface

HasHandlers

com.google.gwt.event.shared.HasHandlers
Known Indirect Subclasses

Class Overview

An object that implements this interface has a collection of event handlers associated with it.

Summary

Public Methods
abstract void fireEvent(GwtEvent<?> event)
Fires the given event to the handlers listening to the event's type.

Public Methods

public abstract void fireEvent (GwtEvent<?> event)

Fires the given event to the handlers listening to the event's type.

Any exceptions thrown by handlers will be bundled into a UmbrellaException and then re-thrown after all handlers have completed. An exception thrown by a handler will not prevent other handlers from executing.

Parameters
event the event