Package docking.widgets.table
Interface SelectionManagerListener
-
public interface SelectionManagerListenerA listener that will get notified of selections made by theSelectionManager.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidrestoringSelection(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 theSelectionManageris about to restore selections; false when theSelectionManageris finished restoring selections.
-
-