Ok, i understood the complete flow now. This is my understanding of what is happening when we double click on an image:
1. The mouseReleased method is invoked in dataBrowser.browser.BrowserControl.java
2. Then viewDisplay method is invoked in dataBrowser.browser.BrowserModel.java, which gets the imagedata and posts the event to bus.
3. Then the event of view image is handled by handleViewImage method of imviewer.ImViewerAgent.java, which creates the imviewer.
4. Now the propertyChange() method is invoked in ImViewerControl.java, which calls onRndLoaded() of ImViewerComponent, where the components and GUI of ImViewerUI (new window hosting image) are built.
5. Then renderXYPlane() is invoked in ImViewerComponent, which fires the image retrieval, using the fireImageRetrieval() method in ImViewerModel, that sets the rendered image in imviewer.browser.BrowserModel.java, using the setRenderedImage(), and calls paintMainImage() in imviewer.browser.BrowserUI.java.
6. Finally in paintMainImage() of BrowserUI.java, the createDisplayedImage() of BrowserModel is called, that magnifies the rendered image.
7. The BrowserUI is the view that is returned and is added to a ClosableTabbedPaneComponent in a new window (ImViewerUI).
Now Please tell me, how i can get the rendered image to the working pane of TreeViewer.
As the treeviewer is initialised before the image is double clicked, how can i get the reference of it ?
And as you said that i should not have to modify the tree viewer, how can i transfer the image to TreeViewerWin.
