Search Results

3
votes

Code compiling in eclipse but not on command line

What you have seems to compile. If possible, I would suggest trying to embed the resource in the Jar and using ClassLoader.getResourceAsStream(). …
2
votes

A Java API to generate Java source files

If you REALLY need the source, I don't know of anything that generates source. You can however use ASM or …
1
vote

Building Eclipse plugins and features on the command line

You might look into buckminster and maven. There is a learning curve for sure, but they seem to do their jobs well. …
-1
votes

How can I set the current line of execution in the eclipse java debugger

In the debugger perspective, click on the line you want, and choose from the Run menu, "Run to Line" This will get you to that point in execution. …