I need helps. What I need are, I want to parse .xml file that appears on Eclipse Project Explorer. The parsing process will be take long time. After the parsing done, I want to show my custom perspective to show visual graphical using Zest. Currently, there are 2 approach, by using Commands or Actions, and I still don't get the idea how they are difference. So, in summary:
- I need pop up context menu, named "Parse this xml" that visible when the right click on the .xml file on Eclipse project explorer. Perhaps this is using ObjectContribution on popupmenu extension.
- After the "Parse this xml" is clicked, it will run the parsing process and show busy progress.
- After done, it will show my custom perspective that are defined on perpective extension points.
I just need to know, how it will be implemented by using Command and Action.