Interface BeforeSelectionHandler<T>
-
- Type Parameters:
T
- the type about to be selected
- All Superinterfaces:
EventHandler
- All Known Implementing Classes:
ListenerWrapper.WrappedTabListener
public interface BeforeSelectionHandler<T> extends EventHandler
Handler interface forBeforeSelectionEvent
events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onBeforeSelection(BeforeSelectionEvent<T> event)
Called whenBeforeSelectionEvent
is fired.
-
-
-
Method Detail
-
onBeforeSelection
void onBeforeSelection(BeforeSelectionEvent<T> event)
Called whenBeforeSelectionEvent
is fired.- Parameters:
event
- theBeforeSelectionEvent
that was fired
-
-