Package com.macrofocus.selection
Interface SingleSelectionListener<E>
-
- Type Parameters:
E
- the type of elements that can be selected
public interface SingleSelectionListener<E>
The listener interface for receiving "interesting" events about a selection.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
selectionChanged(SingleSelectionEvent<E> event)
Called whenever the value of the selection changes.
-
-
-
Method Detail
-
selectionChanged
void selectionChanged(SingleSelectionEvent<E> event)
Called whenever the value of the selection changes.- Parameters:
event
- the event that characterizes the change.
-
-