Package docking.widgets.table
Interface SelectionManagerListener
-
public interface SelectionManagerListener
A listener that will get notified of selections made by theSelectionManager
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
restoringSelection(boolean preRestore)
Called before and after a selection is restored.
-
-
-
Method Detail
-
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.
-
-