I want to make a Headless Console plugin and a UI plugin for Eclipse. Requirments are like this;
- Headless plugin will be accessed from cmd
- Headless plugin will accept couple of parameters
- UI plugin will show windows to user to input these parameters
- UI plugin will trigger headless plugin with the parameters provided by user.
Headless plugin processes some resources when triggered. So calling only a method of headless plugin does not work for me. I have to have the bundle instance in the plugin to access the resources.
I need an approach on how to achieve starting a headless plugin from UI plugin. Headless plugin cont
Thanks in advance