I posted this question on eclipse.rcp, but maybe that was the wrong
place to ask, so I thought I'd ask here instead.
I am creating an RCP application. In my start() method of my class that
implements IApplication, I return EXIT_RELAUNCH, and my application
restarts just fine. However, I'm trying to figure out the correct
format of the command line that needs to be set in eclipse.exitdata so I
restart my application specifying different parameters. Is there any
documentation that describes this in more detail than what is in the
IApplication class, or can someone point me at an example? Thank you.
I just got to work relaunching the application with a different set of parameters as done in eclipse.ui.internal.ide.actions.OpenWorkspaceAction, and I have a general question about this mechanism. Is it possible to perform the relaunch when launching the application within Eclipse? Currently my application just terminates when run from Eclipse and it works only when exported and run outside of Eclipse. It would be really nice for development.