I'm developing a plugin with EMF and GMF. It has two views and I want that when one element is selected in the first one the second is refreshed.

Actually I used this command:

getViewSite().getPage().addSelectionListener(this);

But it allows me to listen only the selections in the editor.

How can I fix it? And how can I ensure that the view is refreshed when the plugin is loaded? Currently when I start the plugin it is empty and it is refreshed as soon as I click on the editor.

Thanks, Luca

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can use Selection Service:

getViewSite().getWorkbenchWindow().getSelectionService().addSelectionListener(this)

or

getViewSite().getWorkbenchWindow().getSelectionService().addSelectionListener(partId, this)

to listen for selection changes in a specific view/editor.

link|improve this answer
I suppose that in the second method partId is the view that I want to observ, right? – lucaghera Aug 19 '11 at 19:03
Yes, of course. – Alexey Romanov Aug 21 '11 at 17:42
Hi, I finally had the time for testing you hint. It doesn't work. Do I have to add the view that I'm listening as a selection provider? Currently I do it in that way: getSite().setSelectionProvider(viewer); where viewer` is the tableViewer – lucaghera Aug 24 '11 at 8:48
@lucaghera Doesn't work how? – Alexey Romanov Aug 24 '11 at 8:50
@lucaghera: "Do I have to add the view that I'm listening as a selection provider?" Yes, and in the way you give. – Alexey Romanov Aug 24 '11 at 8:55
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.