Reputation: 951
I need to create an eclipse project that does the following: a. Add an entry in the File->New->Project list b. When the user clicks on this pop-up a dialog where I ask for some information c. On clicking okay, I want to generate java code which implements certain interfaces
I know how to do steps a and b. how do I generate do I achieve step c?
Upvotes: 0
Views: 106
Reputation: 22070
Assuming that you not only need Java code, but a whole Java project: There is a nice tutorial how to do this here: http://sdqweb.ipd.kit.edu/wiki/JDT_Tutorial:_Creating_Eclipse_Java_Projects_Programmatically
Upvotes: 1