I'm evaluating the possibility of developing an Eclipse plugin to modify the source code of some Java files.
The Eclipse plugin should:
- add one menu option or context menu option to launch the modification process.
- add a key binding
- only alter the UI in that way when an editor has been open on a Java file.
- the modification process would not open a dialog, or maybe, a very simple one.
- the modification process would traverse the AST of the Java file and would modify it.
Considering that we have no experience with Eclipse plugins and we need spend time in reading docs, how much time do you estimate in developing that plugin?
Thanks in advance.