public final class RemoveHandlerEvent extends GwtEvent<H>
GwtEvent.Type<H>| Modifier and Type | Field and Description |
|---|---|
static GwtEvent.Type<RemoveHandlerEventHandler> |
TYPE
Event type
|
| Constructor and Description |
|---|
RemoveHandlerEvent(GwtEvent.Type<? extends EventHandler> handlerType)
Creates the event with the type of removed handler.
|
| Modifier and Type | Method and Description |
|---|---|
protected void |
dispatch(RemoveHandlerEventHandler handler) |
GwtEvent.Type<RemoveHandlerEventHandler> |
getAssociatedType() |
boolean |
isRecognize(GwtEvent.Type<?> type)
Returns
true if the type of event handler is equals to the event handler type provided as argument,
otherwise false. |
boolean |
isRecognize(List<GwtEvent.Type<?>> types)
Returns
true if the type of event handler is inside the list provided as argument, otherwise
false. |
assertLive, getSource, isLive, kill, revivesetSource, toDebugString, toStringpublic static final GwtEvent.Type<RemoveHandlerEventHandler> TYPE
public RemoveHandlerEvent(GwtEvent.Type<? extends EventHandler> handlerType)
handlerType - the type of removed handler.public GwtEvent.Type<RemoveHandlerEventHandler> getAssociatedType()
getAssociatedType in class GwtEvent<RemoveHandlerEventHandler>protected void dispatch(RemoveHandlerEventHandler handler)
dispatch in class GwtEvent<RemoveHandlerEventHandler>public final boolean isRecognize(List<GwtEvent.Type<?>> types)
true if the type of event handler is inside the list provided as argument, otherwise
false.types - list of type to use checking if the type of event handler of event is in the listtrue if the type of event handler is inside the list provided as argument, otherwise
falsepublic final boolean isRecognize(GwtEvent.Type<?> type)
true if the type of event handler is equals to the event handler type provided as argument,
otherwise false.type - the event handler type to use checking if equals to the type of event handler of eventtrue if the type of event handler is equals to the event handler type provided as argument,
otherwise false