I am developing an Eclipse plugin where I would like to detect selections in the editor that happen implicitly (e.g. during a debugging session).
I can detect the mouse down, double click and up events but the problem is that I cannot guarantee that these will happen before the selection changed event is fired.
Is there any way that I can be sure that a selection changed event didn't happen because of a mouse click or direct user input?
Alan