I'm trying to write an Eclipse plugin. It will have dependencies on the RCP for basic stuff and JDT for Java code generation. It consists of a Wizard / WizardPage which asks for a package and a few class names. When the user hits "Finish", I want the wizard to create classes corresponding to the entered values into the current Java project.

I have the basic UI working. What I cannot figure out is how to generate the corresponding class code. Eclipse documentation is a bit hard to follow. From what I can glean I need to first obtain an IJavaProject from the workspace, from that an IPackageFragment and from that I can call createCompilationUnit() to make a class.

What I can't do is find any working examples. I assume that somehow I can walk from the workspace root to where I need to be and create the unit.

Can anyone offer some pointers to simple working code?

link|improve this question

44% accept rate
feedback

2 Answers

You need to extend NewElementWizardPage and provide the functionality. See this documentation for more details

link|improve this answer
feedback

I assume that somehow I can walk from the workspace root to where I need to be and create the unit.

Yes. Take a look at IProject, IFolder, and IFile in the org.eclipse.core.resources package.

Can anyone offer some pointers to simple working code?

Eclipse itself creates a new Java class with a limited skeleton when you ask it to, using the New Java Class Wizard. That source code would be helpful to you for what you want to do. I couldn't find it with a cursory search of Eclipse and the Eclipse help. I'm guessing it's somewhere in an org.eclipse.pde package.

You might also look at Creation Wizards, which is the extension point org.eclipse.ui.newWizards.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.