Package com.macrofocus.selection
Interface SelectionListener<E>
-
- Type Parameters:
E
- the type of elements that can be selected
public interface SelectionListener<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(SelectionEvent<E> event)
Called whenever the value of the selection changes.
-
-
-
Method Detail
-
selectionChanged
void selectionChanged(SelectionEvent<E> event)
Called whenever the value of the selection changes.- Parameters:
event
- the event that characterizes the change.
-
-