up vote 1 down vote favorite
share [g+] share [fb]

I'm trying to find a way to check my classes for references of methods with a particular annotation (think "Deprecated").

As far as i see it, analysing byte code won't work because it doesn't contain any annotations.
Using APT doesn't really help because i need the references to the methods, not the annotated methods themselves.

So, what options do i have?

The best i can come up with is compiling a list of the annotated methods followed by a full code analysis, checking every method call against the list.
Is there a way to do that efficiently in an eclipse plug-in or an ant task?

link|improve this question

73% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Analysing bytecode will works! ASM for an example is handling annotation very well.

link|improve this answer
wait... you're right. What made me think annotations don't get compiled to the byte code? – Stroboskop Nov 6 '09 at 14:26
feedback

In another question I asked for a Java parser of the Java language. For my analysis of code I use this one. Perhaps it's good for you, too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.