Package com.google.gwt.view.client
Class SelectionChangeEvent
java.lang.Object
com.google.web.bindery.event.shared.Event<SelectionChangeEvent.Handler>
com.google.gwt.event.shared.GwtEvent<SelectionChangeEvent.Handler>
com.google.gwt.view.client.SelectionChangeEvent
Represents a selection change event.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic interface
Handler interface forSelectionChangeEvent
events.static interface
Interface specifying that a class can addSelectionChangeEvent.Handler
s.Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
GwtEvent.Type<H>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
dispatch
(SelectionChangeEvent.Handler handler) Should only be called byHandlerManager
.static void
Fires a selection change event on all registered handlers in the handler manager.Returns theEvent.Type
used to register this event, allowing anEventBus
to find handlers of the appropriate class.getType()
Gets the type associated with this event.Methods inherited from class com.google.gwt.event.shared.GwtEvent
assertLive, getSource, isLive, kill, revive
Methods inherited from class com.google.web.bindery.event.shared.Event
setSource, toDebugString, toString
-
Constructor Details
-
SelectionChangeEvent
SelectionChangeEvent()Creates a selection change event.
-
-
Method Details
-
fire
Fires a selection change event on all registered handlers in the handler manager. If no such handlers exist, this method will do nothing.- Parameters:
source
- the source of the handlers
-
getType
Gets the type associated with this event.- Returns:
- returns the handler type
-
getAssociatedType
Description copied from class:Event
Returns theEvent.Type
used to register this event, allowing anEventBus
to find handlers of the appropriate class.- Specified by:
getAssociatedType
in classGwtEvent<SelectionChangeEvent.Handler>
- Returns:
- the type
-
dispatch
Description copied from class:GwtEvent
Should only be called byHandlerManager
. In other words, do not use or call.- Specified by:
dispatch
in classGwtEvent<SelectionChangeEvent.Handler>
- Parameters:
handler
- handler- See Also:
-