Package com.storedobject.vaadin
Interface ItemSelectedListener<T>
- Type Parameters:
T- Type of item selected.
- All Known Subinterfaces:
ItemsSelectedListener<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Interface for listening on selected items (especially in
Grid.- Author:
- Syam
-
Method Summary
Modifier and TypeMethodDescriptionvoiditemSelected(com.vaadin.flow.component.Component component, T item) Method called when an item is selected/deselected.
-
Method Details
-
itemSelected
Method called when an item is selected/deselected.- Parameters:
component- Component from which the item is selecteditem- Selected item. It will be null when a previously selected item was deselected.
-