Search Results

3
votes

Code compiling in eclipse but not on command line

Eclipse has it's own compiler. The Eclipse JDT compiler seems to handle your array differently than javac. …
6
votes

Programmatically showing a View from an Eclipse Plug-in

You are probably looking for this: PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage().showView(arg0); …
1
vote

Building Eclipse plugins and features on the command line

We are currently using PDE to automatically build features and our complete product. It works quite well. Make sure you use the right script for product build or feature build. …
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 …