I was wondering if there was a simple way to extend the features of the Java Editor in Eclipse for some custom project.
Example : When I write in eclipse :
@Deprecated
public void foo();
foo will be automatically crossed-out and thus easy to notice. In some projects I would like to do the same with custom annotations like @Untested or @Verified to have a better dev environment (but of course, there are plenty of examples like this (special class colours, etc...).
I wanted to create a simple eclipse bundle that extend this kinds of rules but I am unable to find an adequate extension point for this. Do I have to create a new text editor from scratch ?
Thanks for any help or comments,