I have an rcp eclipse application and from that application, using a context menu action I want to start a new rcp application .
How do I do that ?
Thank you.
I have an rcp eclipse application and from that application, using a context menu
Share
As I see it, you have two options.
Either you create a dependency between the two RCPs and when the user clicks the menu, just instantiate the second RCPs main class.
Or you could execute the second RCP as an external command. That means you will have to know where it is installed.