We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.client.widget.grid.
Class DataAvailableEvent
- java.lang.Object
-
- com.google.web.bindery.event.shared.Event<H>
-
- com.google.gwt.event.shared.GwtEvent<DataAvailableHandler>
-
- com.vaadin.client.widget.grid.DataAvailableEvent
-
public class DataAvailableEvent extends com.google.gwt.event.shared.GwtEvent<DataAvailableHandler>
Event object describing a change of row availability in DataSource of a Grid.
Since:
7.4
Author:
Vaadin Ltd
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.gwt.event.shared.GwtEvent
com.google.gwt.event.shared.GwtEvent.Type<H extends Object>
-
-
Field Summary
Fields Modifier and Type Field Description static com.google.gwt.event.shared.GwtEvent.Type<DataAvailableHandler>
TYPE
Handler type for DataAvailableEvents.
-
Constructor Summary
Constructors Constructor Description DataAvailableEvent(Range rowsAvailable)
Constructs a data availability event for the given row range.
-
Method Summary
All Methods Modifier and Type Method Description protected void
dispatch(DataAvailableHandler handler)
com.google.gwt.event.shared.GwtEvent.Type<DataAvailableHandler>
getAssociatedType()
Range
getAvailableRows()
Returns the range of available rows in
DataSource
for this event.-
Methods inherited from class com.google.gwt.event.shared.GwtEvent
assertLive, getSource, isLive, kill, revive
-
-
-
-
Field Detail
-
TYPE
public static final com.google.gwt.event.shared.GwtEvent.Type<DataAvailableHandler> TYPE
Handler type for DataAvailableEvents.
-
-
Constructor Detail
-
DataAvailableEvent
public DataAvailableEvent(Range rowsAvailable)
Constructs a data availability event for the given row range.
Parameters:
rowsAvailable
- the range of available rows
-
-
Method Detail
-
getAvailableRows
public Range getAvailableRows()
Returns the range of available rows in
DataSource
for this event.Returns:
range of available rows
-
getAssociatedType
public com.google.gwt.event.shared.GwtEvent.Type<DataAvailableHandler> getAssociatedType()
Specified by:
getAssociatedType
in classcom.google.gwt.event.shared.GwtEvent<DataAvailableHandler>
-
dispatch
protected void dispatch(DataAvailableHandler handler)
Specified by:
dispatch
in classcom.google.gwt.event.shared.GwtEvent<DataAvailableHandler>
-
-