I was wondering if there was an easy way to extend the capabilities of the Java editor in Eclipse for some kind of custom project.
Example: When I write in eclipse:
@Deprecated public void foo();
foo will be automatically crossed out and therefore easy to notice. In some projects, I would like to do the same with custom annotations like @Untested or @Verified in order to have a better development environment (but, of course, such examples are enough (special colors of classes, etc.).
I wanted to create a simple eclipse suite that extends such rules, but I cannot find an adequate extension point for this. Do I need to create a new text editor from scratch?
Thanks for any help or comments,
Thr37 source share