Interface HasSelectionHandlers<T>
-
- Type Parameters:
T
- the type being selected
- All Superinterfaces:
HasHandlers
- All Known Implementing Classes:
DecoratedTabBar
,DecoratedTabPanel
,StackLayoutPanel
,SuggestBox
,TabBar
,TabLayoutPanel
,TabPanel
,Tree
public interface HasSelectionHandlers<T> extends HasHandlers
A widget that implements this interface is a public source ofSelectionEvent
events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HandlerRegistration
addSelectionHandler(SelectionHandler<T> handler)
Adds aSelectionEvent
handler.-
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
-
-
-
Method Detail
-
addSelectionHandler
HandlerRegistration addSelectionHandler(SelectionHandler<T> handler)
Adds aSelectionEvent
handler.- Parameters:
handler
- the handler- Returns:
- the registration for the event
-
-