Interface HasSelectionHandlers<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.gwt.event.shared.HandlerRegistration
addSelectionHandler(SelectionHandler<T> handler)
Register a selection change handler.
-
-
-
Method Detail
-
addSelectionHandler
com.google.gwt.event.shared.HandlerRegistration addSelectionHandler(SelectionHandler<T> handler)
Register a selection change handler.This handler is called whenever a
SelectionModel
detects a change in selection state.- Parameters:
handler
- aSelectionHandler
- Returns:
- a handler registration object, which can be used to remove the handler.
-
-