Interface SelectionHandler<T>
-
- Type Parameters:
T
- the type being selected
- All Superinterfaces:
EventHandler
- All Known Implementing Classes:
ListenerWrapper.WrappedOldSuggestionHandler
,ListenerWrapper.WrappedTabListener
,ListenerWrapper.WrappedTreeListener
public interface SelectionHandler<T> extends EventHandler
Handler interface forSelectionEvent
events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onSelection(SelectionEvent<T> event)
Called whenSelectionEvent
is fired.
-
-
-
Method Detail
-
onSelection
void onSelection(SelectionEvent<T> event)
Called whenSelectionEvent
is fired.- Parameters:
event
- theSelectionEvent
that was fired
-
-