I am currently building a RCP application based on Eclipse.
In one of my plugins I am adding two views via code:
layout.addView("dev.asd.tableviewer.tree", IPageLayout.LEFT, 0.25f, IPageLayout.ID_EDITOR_AREA);
layout.addView("dev.asd.tableviewer.view", IPageLayout.RIGHT, 0.75f, IPageLayout.ID_EDITOR_AREA);
The first view contains a treeviewer, the second one a tableviewer. Now I want to update the tableviewer’s content according to the selection of the treeviewer. My question is, how can I reference the tableviewer from within the treeviewer? Or is there an other way to solve this problem?
In each view, define an ID. The ID is the same as what you defined in the ID field when you defined the view in the extension element details. Here’s one of mine:
In your RCP plug-in, define the following method:
When you want to reference a view from a different view, use the following code:
Substitute the name of your view for
PrefetchedInmatesView, and the name of your plug-in forRabidPlugin.