SelectionHandler<T> abstract class
Handler interface for {@link SelectionEvent} events.
@param <T> the type being selected
abstract class SelectionHandler<T> extends EventHandler {
/**
* Called when {@link SelectionEvent} is fired.
*
* @param event the {@link SelectionEvent} that was fired
*/
void onSelection(SelectionEvent<T> event);
}
Extends
EventHandler > SelectionHandler<T>
Subclasses
Methods
abstract void onSelection(SelectionEvent<T> event) #
Called when {@link SelectionEvent} is fired.
@param event the {@link SelectionEvent} that was fired