Interface AbstractComboBox.ComboBoxListener<Value>
-
- Type Parameters:
Value- The kind of model elements, which are selectable by the relatedAbstractComboBox.
- Enclosing class:
- AbstractComboBox<Value>
public static interface AbstractComboBox.ComboBoxListener<Value>A listener to react on state changes ofAbstractComboBox.- Author:
- Sascha El-Sharkawy
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidvalueSelected(Value selectedValue)Will be called if a new value was selected.
-
-
-
Method Detail
-
valueSelected
void valueSelected(Value selectedValue)
Will be called if a new value was selected.- Parameters:
selectedValue- The selected value or null ifAbstractComboBox.NO_SELECTION_VALUEwas selected.
-
-