Class LoadingStateChangeEvent
- java.lang.Object
-
- com.google.web.bindery.event.shared.Event<H>
-
- com.google.gwt.event.shared.GwtEvent<LoadingStateChangeEvent.Handler>
-
- com.google.gwt.user.cellview.client.LoadingStateChangeEvent
-
public class LoadingStateChangeEvent extends GwtEvent<LoadingStateChangeEvent.Handler>
An event used to indicate that the data loading state has changed.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceLoadingStateChangeEvent.HandlerImplemented by handlers ofLoadingStateChangeEvent.static interfaceLoadingStateChangeEvent.LoadingStateRepresents the current status of the data being loaded.-
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
GwtEvent.Type<H>
-
-
Field Summary
Fields Modifier and Type Field Description static GwtEvent.Type<LoadingStateChangeEvent.Handler>TYPEA singleton instance of Type.
-
Constructor Summary
Constructors Constructor Description LoadingStateChangeEvent(LoadingStateChangeEvent.LoadingState state)Construct a newLoadingStateChangeEvent.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddispatch(LoadingStateChangeEvent.Handler handler)Should only be called byHandlerManager.GwtEvent.Type<LoadingStateChangeEvent.Handler>getAssociatedType()Returns theEvent.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class.LoadingStateChangeEvent.LoadingStategetLoadingState()Get the newLoadingStateChangeEvent.LoadingStateassociated 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
-
-
-
-
Field Detail
-
TYPE
public static final GwtEvent.Type<LoadingStateChangeEvent.Handler> TYPE
A singleton instance of Type.
-
-
Constructor Detail
-
LoadingStateChangeEvent
public LoadingStateChangeEvent(LoadingStateChangeEvent.LoadingState state)
Construct a newLoadingStateChangeEvent.- Parameters:
state- the new state
-
-
Method Detail
-
getAssociatedType
public GwtEvent.Type<LoadingStateChangeEvent.Handler> getAssociatedType()
Description copied from class:EventReturns theEvent.Typeused to register this event, allowing anEventBusto find handlers of the appropriate class.- Specified by:
getAssociatedTypein classGwtEvent<LoadingStateChangeEvent.Handler>- Returns:
- the type
-
getLoadingState
public LoadingStateChangeEvent.LoadingState getLoadingState()
Get the newLoadingStateChangeEvent.LoadingStateassociated with this event.- Returns:
- the
LoadingStateChangeEvent.LoadingState
-
dispatch
protected void dispatch(LoadingStateChangeEvent.Handler handler)
Description copied from class:GwtEventShould only be called byHandlerManager. In other words, do not use or call.- Specified by:
dispatchin classGwtEvent<LoadingStateChangeEvent.Handler>- Parameters:
handler- handler- See Also:
EventBus.dispatchEvent(Event, Object)
-
-