I would like to write an Eclipse plug-in that is able to import existing documentation into JavaDoc comments of existing Java code.
Background: I've generated Java code to communicate with an third party (native) program. Now I would like to import the documentation of the third party program into my generated code.
What I've already done: I have developed an Eclipse "QuickAssist" by implementing "IJavaCompletionProposalComputer" that does the trick already for a single Java method or static field.
Now I would like to write a plug-in that triggers my implementation for every method or field within some selected source code.
I'm not so familiar with the Eclipse SDK. Can someone give me a hint where to start or which interface(s) I need to implement to archive this?
Thanks in advance.