Package com.vaadin.event
Interface SelectionEvent.SelectionNotifier
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
Grid
- Enclosing class:
- SelectionEvent
public static interface SelectionEvent.SelectionNotifier extends Serializable
The interface for adding and removing listeners forSelectionEvents.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddSelectionListener(SelectionEvent.SelectionListener listener)Registers a new selection listenervoidremoveSelectionListener(SelectionEvent.SelectionListener listener)Removes a previously registered selection change listener
-
-
-
Method Detail
-
addSelectionListener
void addSelectionListener(SelectionEvent.SelectionListener listener)
Registers a new selection listener- Parameters:
listener- the listener to register
-
removeSelectionListener
void removeSelectionListener(SelectionEvent.SelectionListener listener)
Removes a previously registered selection change listener- Parameters:
listener- the listener to remove
-
-