Class AbstractHasData.RedrawEvent
- java.lang.Object
-
- com.google.web.bindery.event.shared.Event<H>
-
- com.google.gwt.event.shared.GwtEvent<AbstractHasData.RedrawEvent.Handler>
-
- com.google.gwt.user.cellview.client.AbstractHasData.RedrawEvent
-
- Enclosing class:
- AbstractHasData<T>
public static class AbstractHasData.RedrawEvent extends GwtEvent<AbstractHasData.RedrawEvent.Handler>
Event fired when one or more existing rows are re-rendered.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
AbstractHasData.RedrawEvent.Handler
Implemented by objects that handleAbstractHasData.RedrawEvent
.-
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
GwtEvent.Type<H>
-
-
Constructor Summary
Constructors Constructor Description RedrawEvent()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
dispatch(AbstractHasData.RedrawEvent.Handler handler)
Should only be called byHandlerManager
.GwtEvent.Type<AbstractHasData.RedrawEvent.Handler>
getAssociatedType()
Returns theEvent.Type
used to register this event, allowing anEventBus
to find handlers of the appropriate class.-
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
-
-
-
-
Method Detail
-
getAssociatedType
public GwtEvent.Type<AbstractHasData.RedrawEvent.Handler> 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<AbstractHasData.RedrawEvent.Handler>
- Returns:
- the type
-
dispatch
protected void dispatch(AbstractHasData.RedrawEvent.Handler handler)
Description copied from class:GwtEvent
Should only be called byHandlerManager
. In other words, do not use or call.- Specified by:
dispatch
in classGwtEvent<AbstractHasData.RedrawEvent.Handler>
- Parameters:
handler
- handler- See Also:
EventBus.dispatchEvent(Event, Object)
-
-