|
GWT 0.0.0 | |||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use HandlerRegistration | |
---|---|
com.google.gwt.editor.client | A framework for editing bean-like objects. |
com.google.gwt.editor.client.testing | Classes used for testing the bean editor support. |
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.requestfactory.shared | Shared classes used on both the client and the server side for transmitting data between the sever and the client in JSON format. |
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.user.datepicker.client | The date picker widget and associated types. |
com.google.gwt.view.client | Classes and interfaces used by the
cellview widget set. |
Uses of HandlerRegistration in com.google.gwt.editor.client |
---|
Methods in com.google.gwt.editor.client that return HandlerRegistration | |
---|---|
HandlerRegistration |
EditorDelegate.subscribe()
Register for notifications if object being edited is updated. |
Uses of HandlerRegistration in com.google.gwt.editor.client.testing |
---|
Methods in com.google.gwt.editor.client.testing that return HandlerRegistration | |
---|---|
HandlerRegistration |
MockEditorDelegate.subscribe()
Returns a no-op HandlerRegistration instance. |
Uses of HandlerRegistration in com.google.gwt.event.dom.client |
---|
Uses of HandlerRegistration in com.google.gwt.event.logical.shared |
---|
Uses of HandlerRegistration in com.google.gwt.event.shared |
---|
Classes in com.google.gwt.event.shared that implement HandlerRegistration | |
---|---|
class |
DefaultHandlerRegistration
Deprecated. with no replacement; this class is no longer used by any GWT code |
Methods in com.google.gwt.event.shared that return HandlerRegistration | ||
---|---|---|
|
SimpleEventBus.addHandler(GwtEvent.Type<H> type,
H handler)
|
|
|
ResettableEventBus.addHandler(GwtEvent.Type<H> type,
H handler)
|
|
|
HandlerManager.addHandler(GwtEvent.Type<H> type,
H handler)
Adds a handler. |
|
abstract
|
EventBus.addHandler(GwtEvent.Type<H> type,
H handler)
Adds an unfiltered handler to receive events of this type from all sources. |
|
|
SimpleEventBus.addHandlerToSource(GwtEvent.Type<H> type,
java.lang.Object source,
H handler)
|
|
|
ResettableEventBus.addHandlerToSource(GwtEvent.Type<H> type,
java.lang.Object source,
H handler)
|
|
abstract
|
EventBus.addHandlerToSource(GwtEvent.Type<H> type,
java.lang.Object source,
H handler)
Adds a handler to receive events of this type from the given source. |
Uses of HandlerRegistration in com.google.gwt.event.shared.testing |
---|
Methods in com.google.gwt.event.shared.testing that return HandlerRegistration | ||
---|---|---|
|
CountingEventBus.addHandler(GwtEvent.Type<H> type,
H handler)
|
|
|
CountingEventBus.addHandlerToSource(GwtEvent.Type<H> type,
java.lang.Object source,
H handler)
|
Uses of HandlerRegistration in com.google.gwt.place.shared |
---|
Methods in com.google.gwt.place.shared that return HandlerRegistration | |
---|---|
HandlerRegistration |
PlaceHistoryHandler.DefaultHistorian.addValueChangeHandler(ValueChangeHandler<java.lang.String> valueChangeHandler)
|
HandlerRegistration |
PlaceHistoryHandler.Historian.addValueChangeHandler(ValueChangeHandler<java.lang.String> valueChangeHandler)
Adds a ValueChangeEvent
handler to be informed of changes to the browser's history stack. |
HandlerRegistration |
PlaceController.DefaultDelegate.addWindowClosingHandler(Window.ClosingHandler handler)
|
HandlerRegistration |
PlaceController.Delegate.addWindowClosingHandler(Window.ClosingHandler handler)
Adds a Window.ClosingHandler to the Delegate. |
HandlerRegistration |
PlaceHistoryHandler.register(PlaceController placeController,
EventBus eventBus,
Place defaultPlace)
Initialize this place history handler. |
Uses of HandlerRegistration in com.google.gwt.requestfactory.shared |
---|
Methods in com.google.gwt.requestfactory.shared that return HandlerRegistration | ||
---|---|---|
static
|
EntityProxyChange.registerForProxyType(EventBus eventBus,
java.lang.Class<P> proxyType,
EntityProxyChange.Handler<P> handler)
Register a handler for a EntityProxyChange events for a particular proxy class. |
Uses of HandlerRegistration in com.google.gwt.user.cellview.client |
---|
Methods in com.google.gwt.user.cellview.client that return HandlerRegistration | |
---|---|
HandlerRegistration |
AbstractHasData.addCellPreviewHandler(CellPreviewEvent.Handler<T> handler)
|
HandlerRegistration |
AbstractCellTree.addCloseHandler(CloseHandler<TreeNode> handler)
|
HandlerRegistration |
CellTable.addColumnSortHandler(ColumnSortEvent.Handler handler)
Add a handler to handle ColumnSortEvent s. |
HandlerRegistration |
AbstractCellTree.addOpenHandler(OpenHandler<TreeNode> handler)
|
HandlerRegistration |
AbstractHasData.addRangeChangeHandler(RangeChangeEvent.Handler handler)
|
HandlerRegistration |
AbstractHasData.addRowCountChangeHandler(RowCountChangeEvent.Handler handler)
|
HandlerRegistration |
CellWidget.addValueChangeHandler(ValueChangeHandler<C> handler)
|
Uses of HandlerRegistration in com.google.gwt.user.client |
---|
Methods in com.google.gwt.user.client that return HandlerRegistration | |
---|---|
static HandlerRegistration |
Window.addCloseHandler(CloseHandler<Window> handler)
Adds a CloseEvent handler. |
static HandlerRegistration |
Event.addNativePreviewHandler(Event.NativePreviewHandler handler)
Adds a Event.NativePreviewHandler that will receive all events before
they are fired to their handlers. |
static HandlerRegistration |
Window.addResizeHandler(ResizeHandler handler)
Adds a ResizeEvent handler. |
static HandlerRegistration |
History.addValueChangeHandler(ValueChangeHandler<java.lang.String> handler)
Adds a ValueChangeEvent handler
to be informed of changes to the browser's history stack. |
static HandlerRegistration |
Window.addWindowClosingHandler(Window.ClosingHandler handler)
Adds a Window.ClosingEvent handler. |
static HandlerRegistration |
Window.addWindowScrollHandler(Window.ScrollHandler handler)
Adds a Window.ScrollEvent handler. |
Uses of HandlerRegistration in com.google.gwt.user.client.ui |
---|
Uses of HandlerRegistration in com.google.gwt.user.datepicker.client |
---|
Methods in com.google.gwt.user.datepicker.client that return HandlerRegistration | |
---|---|
HandlerRegistration |
DatePicker.addHighlightHandler(HighlightHandler<java.util.Date> handler)
|
HandlerRegistration |
DatePicker.addShowRangeHandler(ShowRangeHandler<java.util.Date> handler)
|
HandlerRegistration |
DatePicker.addShowRangeHandlerAndFire(ShowRangeHandler<java.util.Date> handler)
Adds a show range handler and immediately activate the handler on the current view. |
HandlerRegistration |
DatePicker.addValueChangeHandler(ValueChangeHandler<java.util.Date> handler)
|
HandlerRegistration |
DateBox.addValueChangeHandler(ValueChangeHandler<java.util.Date> handler)
|
Uses of HandlerRegistration in com.google.gwt.view.client |
---|
Methods in com.google.gwt.view.client that return HandlerRegistration | |
---|---|
HandlerRegistration |
HasCellPreviewHandlers.addCellPreviewHandler(CellPreviewEvent.Handler<T> handler)
Adds a CellPreviewEvent handler. |
HandlerRegistration |
HasRows.addRangeChangeHandler(RangeChangeEvent.Handler handler)
Add a RangeChangeEvent.Handler . |
HandlerRegistration |
HasRows.addRowCountChangeHandler(RowCountChangeEvent.Handler handler)
Add a RowCountChangeEvent.Handler . |
HandlerRegistration |
SelectionModel.addSelectionChangeHandler(SelectionChangeEvent.Handler handler)
Adds a SelectionChangeEvent handler. |
HandlerRegistration |
SelectionModel.AbstractSelectionModel.addSelectionChangeHandler(SelectionChangeEvent.Handler handler)
|
|
GWT 0.0.0 | |||||||||
PREV NEXT | FRAMES NO FRAMES |