Java com.google.gwt.event.shared HandlerManager fields, constructors, methods, implement or subclass

Example usage for Java com.google.gwt.event.shared HandlerManager fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.gwt.event.shared HandlerManager.

The text is from its open source code.

Subclass

com.google.gwt.event.shared.HandlerManager has subclasses.
Click this link to see all its subclasses.

Constructor

HandlerManager(Object source)
Creates a handler manager with a source to be set on all events fired via #fireEvent(GwtEvent) .
HandlerManager(Object source, boolean fireInReverseOrder)
Creates a handler manager with the given source, specifying the order in which handlers are fired.

Method

HandlerRegistrationaddHandler(GwtEvent.Type type, final H handler)
Adds a handler.
voidfireEvent(GwtEvent event)
Fires the given event to the handlers listening to the event's type.
HgetHandler(GwtEvent.Type type, int index)
Gets the handler at the given index.
intgetHandlerCount(GwtEvent.Type type)
Gets the number of handlers listening to the event type.
booleanisEventHandled(GwtEvent.Type e)
Does this handler manager handle the given event type?
voidremoveHandler(GwtEvent.Type type, final H handler)
Removes the given handler from the specified event type.