Interface CellSelectionHandler<T>
-
- Type Parameters:
T- Type of data associated with both the grid and the event.
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface CellSelectionHandler<T>
Interface for objects handlingCellSelectionEvents inItemGrid.- Since:
- 2020-04-15
- Author:
- miki
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcellSelectionChanged(CellSelectionEvent<T> event)Triggered whenever a cell selection has been changed.
-
-
-
Method Detail
-
cellSelectionChanged
void cellSelectionChanged(CellSelectionEvent<T> event)
Triggered whenever a cell selection has been changed.- Parameters:
event- Information about the event.
-
-