Package | Description |
---|---|
com.google.gwt.event.dom.client |
Types related to DOM events.
|
com.google.gwt.event.logical.shared |
Types related to logical events that do not have direct analogues to DOM
events and which can be used in contexts other than web browsers.
|
com.google.gwt.event.shared |
Shared infrastructure underlying both browser and non-browser events.
|
com.google.gwt.event.shared.testing |
Classes used for testing the GWT event bus.
|
com.google.gwt.place.shared |
A package for managing bookmarkable locations in an application.
|
com.google.gwt.user.cellview.client |
The "cellview" widget set.
|
com.google.gwt.user.client |
Fundamental user-interface classes used in client-side GWT code.
|
com.google.gwt.user.client.ui |
Widgets, Panels, and other user-interface classes.
|
com.google.gwt.view.client |
Classes and interfaces used by the
cellview widget set. |
Modifier and Type | Class and Description |
---|---|
static class |
DomEvent.Type<H extends EventHandler>
Type class used by dom event subclasses.
|
Modifier and Type | Field and Description |
---|---|
(package private) static GwtEvent.Type<AttachEvent.Handler> |
AttachEvent.TYPE
The event type.
|
Modifier and Type | Method and Description |
---|---|
GwtEvent.Type<ValueChangeHandler<T>> |
ValueChangeEvent.getAssociatedType() |
GwtEvent.Type<ShowRangeHandler<V>> |
ShowRangeEvent.getAssociatedType() |
GwtEvent.Type<SelectionHandler<T>> |
SelectionEvent.getAssociatedType() |
GwtEvent.Type<ResizeHandler> |
ResizeEvent.getAssociatedType() |
GwtEvent.Type<OpenHandler<T>> |
OpenEvent.getAssociatedType() |
GwtEvent.Type<InitializeHandler> |
InitializeEvent.getAssociatedType() |
GwtEvent.Type<HighlightHandler<V>> |
HighlightEvent.getAssociatedType() |
GwtEvent.Type<CloseHandler<T>> |
CloseEvent.getAssociatedType() |
GwtEvent.Type<BeforeSelectionHandler<T>> |
BeforeSelectionEvent.getAssociatedType() |
GwtEvent.Type<AttachEvent.Handler> |
AttachEvent.getAssociatedType() |
static GwtEvent.Type<ValueChangeHandler<?>> |
ValueChangeEvent.getType()
Gets the type associated with this event.
|
static GwtEvent.Type<ShowRangeHandler<?>> |
ShowRangeEvent.getType()
Gets the type associated with this event.
|
static GwtEvent.Type<SelectionHandler<?>> |
SelectionEvent.getType()
Gets the type associated with this event.
|
static GwtEvent.Type<ResizeHandler> |
ResizeEvent.getType()
Ensures the existence of the handler hook and then returns it.
|
static GwtEvent.Type<OpenHandler<?>> |
OpenEvent.getType()
Gets the type associated with this event.
|
static GwtEvent.Type<InitializeHandler> |
InitializeEvent.getType()
Ensures the existence of the handler hook and then returns it.
|
static GwtEvent.Type<HighlightHandler<?>> |
HighlightEvent.getType()
Gets the type associated with this event.
|
static GwtEvent.Type<CloseHandler<?>> |
CloseEvent.getType()
Gets the type associated with this event.
|
static GwtEvent.Type<BeforeSelectionHandler<?>> |
BeforeSelectionEvent.getType()
Gets the type associated with this event.
|
static GwtEvent.Type<AttachEvent.Handler> |
AttachEvent.getType()
Ensures the existence of the handler hook and then returns it.
|
Modifier and Type | Method and Description |
---|---|
abstract GwtEvent.Type<H> |
GwtEvent.getAssociatedType() |
Modifier and Type | Method and Description |
---|---|
<H extends EventHandler> |
SimpleEventBus.addHandler(GwtEvent.Type<H> type,
H handler) |
<H extends EventHandler> |
ResettableEventBus.addHandler(GwtEvent.Type<H> type,
H handler) |
<H extends EventHandler> |
HandlerManager.addHandler(GwtEvent.Type<H> type,
H handler)
Adds a handler.
|
abstract <H extends EventHandler> |
EventBus.addHandler(GwtEvent.Type<H> type,
H handler) |
<H extends EventHandler> |
SimpleEventBus.addHandlerToSource(GwtEvent.Type<H> type,
java.lang.Object source,
H handler) |
<H extends EventHandler> |
ResettableEventBus.addHandlerToSource(GwtEvent.Type<H> type,
java.lang.Object source,
H handler) |
abstract <H extends EventHandler> |
EventBus.addHandlerToSource(GwtEvent.Type<H> type,
java.lang.Object source,
H handler) |
<H extends EventHandler> |
HandlerManager.getHandler(GwtEvent.Type<H> type,
int index)
Gets the handler at the given index.
|
int |
HandlerManager.getHandlerCount(GwtEvent.Type<?> type)
Gets the number of handlers listening to the event type.
|
boolean |
HandlerManager.isEventHandled(GwtEvent.Type<?> e)
Does this handler manager handle the given event type?
|
<H extends EventHandler> |
HandlerManager.removeHandler(GwtEvent.Type<H> type,
H handler)
Removes the given handler from the specified event type.
|
Modifier and Type | Method and Description |
---|---|
<H extends EventHandler> |
CountingEventBus.addHandler(GwtEvent.Type<H> type,
H handler) |
<H extends EventHandler> |
CountingEventBus.addHandlerToSource(GwtEvent.Type<H> type,
java.lang.Object source,
H handler) |
int |
CountingEventBus.getCount(GwtEvent.Type<?> type)
Deprecated.
Please use
getHandlerCount . |
Modifier and Type | Field and Description |
---|---|
static GwtEvent.Type<PlaceChangeRequestEvent.Handler> |
PlaceChangeRequestEvent.TYPE
A singleton instance of Type<Handler>.
|
static GwtEvent.Type<PlaceChangeEvent.Handler> |
PlaceChangeEvent.TYPE
A singleton instance of Type<Handler>.
|
Modifier and Type | Method and Description |
---|---|
GwtEvent.Type<PlaceChangeRequestEvent.Handler> |
PlaceChangeRequestEvent.getAssociatedType() |
GwtEvent.Type<PlaceChangeEvent.Handler> |
PlaceChangeEvent.getAssociatedType() |
Modifier and Type | Field and Description |
---|---|
static GwtEvent.Type<LoadingStateChangeEvent.Handler> |
LoadingStateChangeEvent.TYPE
A singleton instance of Type.
|
Modifier and Type | Method and Description |
---|---|
GwtEvent.Type<RowHoverEvent.Handler> |
RowHoverEvent.getAssociatedType() |
GwtEvent.Type<LoadingStateChangeEvent.Handler> |
LoadingStateChangeEvent.getAssociatedType() |
GwtEvent.Type<ColumnSortEvent.Handler> |
ColumnSortEvent.getAssociatedType() |
GwtEvent.Type<AbstractHasData.RedrawEvent.Handler> |
AbstractHasData.RedrawEvent.getAssociatedType() |
static GwtEvent.Type<RowHoverEvent.Handler> |
RowHoverEvent.getType()
Gets the type associated with this event.
|
static GwtEvent.Type<ColumnSortEvent.Handler> |
ColumnSortEvent.getType()
Gets the type associated with this event.
|
Modifier and Type | Method and Description |
---|---|
<H extends EventHandler> |
HasDataPresenter.View.addHandler(H handler,
GwtEvent.Type<H> type)
Add a handler to the view.
|
Modifier and Type | Field and Description |
---|---|
(package private) static GwtEvent.Type<Window.ScrollHandler> |
Window.ScrollEvent.TYPE
The event type.
|
Modifier and Type | Method and Description |
---|---|
GwtEvent.Type<Window.ClosingHandler> |
Window.ClosingEvent.getAssociatedType() |
GwtEvent.Type<Window.ScrollHandler> |
Window.ScrollEvent.getAssociatedType() |
GwtEvent.Type<Event.NativePreviewHandler> |
Event.NativePreviewEvent.getAssociatedType() |
(package private) static GwtEvent.Type<Window.ClosingHandler> |
Window.ClosingEvent.getType() |
(package private) static GwtEvent.Type<Window.ScrollHandler> |
Window.ScrollEvent.getType() |
static GwtEvent.Type<Event.NativePreviewHandler> |
Event.NativePreviewEvent.getType()
Gets the type associated with this event.
|
Modifier and Type | Method and Description |
---|---|
protected static <H extends EventHandler> |
BaseListenerWrapper.baseRemove(HandlerManager manager,
java.lang.Object listener,
GwtEvent.Type... types)
Deprecated.
Helper method to remove all wrapped listeners from the given event types.
|
Modifier and Type | Method and Description |
---|---|
GwtEvent.Type<FormPanel.SubmitCompleteHandler> |
FormPanel.SubmitCompleteEvent.getAssociatedType() |
GwtEvent.Type<FormPanel.SubmitHandler> |
FormPanel.SubmitEvent.getAssociatedType() |
static GwtEvent.Type<FormPanel.SubmitCompleteHandler> |
FormPanel.SubmitCompleteEvent.getType()
Handler hook.
|
static GwtEvent.Type<FormPanel.SubmitHandler> |
FormPanel.SubmitEvent.getType()
Handler hook.
|
Modifier and Type | Method and Description |
---|---|
<H extends EventHandler> |
Widget.addHandler(H handler,
GwtEvent.Type<H> type)
Adds this handler to the widget.
|
protected static <H extends EventHandler> |
ListenerWrapper.baseRemove(Widget eventSource,
java.util.EventListener listener,
GwtEvent.Type... types)
Deprecated.
Convenience method to remove wrapped handlers from a widget.
|
protected int |
Widget.getHandlerCount(GwtEvent.Type<?> type)
Gets the number of handlers listening to the event type.
|
Modifier and Type | Method and Description |
---|---|
GwtEvent.Type<SelectionChangeEvent.Handler> |
SelectionChangeEvent.getAssociatedType() |
GwtEvent.Type<RowCountChangeEvent.Handler> |
RowCountChangeEvent.getAssociatedType() |
GwtEvent.Type<RangeChangeEvent.Handler> |
RangeChangeEvent.getAssociatedType() |
GwtEvent.Type<CellPreviewEvent.Handler<T>> |
CellPreviewEvent.getAssociatedType() |
static GwtEvent.Type<SelectionChangeEvent.Handler> |
SelectionChangeEvent.getType()
Gets the type associated with this event.
|
static GwtEvent.Type<RowCountChangeEvent.Handler> |
RowCountChangeEvent.getType()
Gets the type associated with this event.
|
static GwtEvent.Type<RangeChangeEvent.Handler> |
RangeChangeEvent.getType()
Gets the type associated with this event.
|
static GwtEvent.Type<CellPreviewEvent.Handler<?>> |
CellPreviewEvent.getType()
Gets the type associated with this event.
|