Is there something in JDT API similiar to IntelliJ IDEA's Inspections?
All I want is to be able to:
(1) register my ASTVistor somewhere, so it will be called everytime JDT
rebuilds AST;
(2) annotate ASTNodes with problems (errors/warnings) so this problematic
places will be highlighted in the editor (just like editor highlights code
with compilation errors).
Could someone point me to relevant documentation or plugins that implement
similar functionality?