6
votes
Programmatically showing a View from an Eclipse Plug-in
You are probably looking for this:
PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView(arg0);
…
0
votes
Need help writing a custom BuildListener
I had this problem when I had two plugins providing an ant.jar.
Make sure you use the org.apache.ant plugin and that there is no other plugin providing another ant.jar.
Another thing I …
