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 ofSelectionEventevents.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HandlerRegistrationaddSelectionHandler(SelectionHandler<T> handler)Adds aSelectionEventhandler.-
Methods inherited from interface com.google.gwt.event.shared.HasHandlers
fireEvent
-
-
-
-
Method Detail
-
addSelectionHandler
HandlerRegistration addSelectionHandler(SelectionHandler<T> handler)
Adds aSelectionEventhandler.- Parameters:
handler- the handler- Returns:
- the registration for the event
-
-