Package docking.widgets.table
Interface SelectionManagerListener
public interface SelectionManagerListener
A listener that will get notified of selections made by the
SelectionManager
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
restoringSelection
(boolean preRestore) Called before and after a selection is restored.
-
Method Details
-
restoringSelection
void restoringSelection(boolean preRestore) Called before and after a selection is restored. This is useful for clients that wish to know when selections are changing due to the SelectionManager versus user initiated selections or programmatic selections.- Parameters:
preRestore
- true if theSelectionManager
is about to restore selections; false when theSelectionManager
is finished restoring selections.
-