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 handling CellSelectionEvents in ItemGrid.
Since:
2020-04-15
Author:
miki
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Triggered whenever a cell selection has been changed.
  • Method Details

    • cellSelectionChanged

      void cellSelectionChanged(CellSelectionEvent<T> event)
      Triggered whenever a cell selection has been changed.
      Parameters:
      event - Information about the event.