public class

SelectionChangeEvent

extends GwtEvent<H extends EventHandler>
java.lang.Object
   ↳ com.google.gwt.event.shared.GwtEvent<H extends com.google.gwt.event.shared.EventHandler>
     ↳ com.google.gwt.view.client.SelectionChangeEvent

Class Overview

Represents a selection change event.

Summary

Nested Classes
interface SelectionChangeEvent.Handler Handler interface for SelectionChangeEvent events. 
Public Methods
static void fire(SelectionModel<?> source)
Fires a selection change event on all registered handlers in the handler manager.
final Type<SelectionChangeEvent.Handler> getAssociatedType()
Returns the type used to register this event.
static Type<SelectionChangeEvent.Handler> getType()
Gets the type associated with this event.
Protected Methods
void dispatch(SelectionChangeEvent.Handler handler)
Should only be called by HandlerManager.
[Expand]
Inherited Methods
From class com.google.gwt.event.shared.GwtEvent
From class java.lang.Object

Public Methods

public static void fire (SelectionModel<?> source)

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

public final Type<SelectionChangeEvent.Handler> getAssociatedType ()

Returns the type used to register this event. Used by handler manager to dispatch events to the correct handlers.

Returns
  • the type

public static Type<SelectionChangeEvent.Handler> getType ()

Gets the type associated with this event.

Returns
  • returns the handler type

Protected Methods

protected void dispatch (SelectionChangeEvent.Handler handler)

Should only be called by HandlerManager. In other words, do not use or call.

Parameters
handler handler