Package docking.widgets
Interface DropDownMultiSelectionChoiceListener<T>
-
- Type Parameters:
T
- type of object displayed in the drop down list
public interface DropDownMultiSelectionChoiceListener<T>
Listener called when the user makes a selection on theDropDownMultiSelectionTextField
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
selectionChanged(java.util.List<T> t)
Invoked when the selection in the dropdown has changed.
-
-
-
Method Detail
-
selectionChanged
void selectionChanged(java.util.List<T> t)
Invoked when the selection in the dropdown has changed.- Parameters:
t
- the selected items
-
-