Hi, I want to create an editor in eclipse (as eclipse plug-in), for a java class that implement some interfaces i created. The editor will let the user edit some information (using a form) that will be put into the java class. - very much like in EJB editor. I want java files that implement this interface to open the editor.
- How can I replace the values in the class without the need to re-generate it (because the user might have edited some of the source code in the class)?
- How can I link the editor to open just some java files?
Thank you.