I am trying to access the actual original source code of a type from within a Java Annotation Processor. Is this possible somehow? Thanks!
|
feedback
|
|
The Mirror API is an equivalent of the Reflection API, but at compile time. Reading the internal content of methods using this API is not possible. Anything else should be OK. If you really want to do this, then there might be hacks to get an input stream on the source files you want to read.
| |||
|
feedback
|
|
Quick answer is that it's not possible. From the Mirror API JavaDoc used in Annotation Processing in Sun's SDK 5:
Java 6 Annotation Processing is based on a new API, but it still doesn't provide any more detail about the code structure. | |||
|
feedback
|
|
you may try Compiler Tree API (http://download.oracle.com/javase/6/docs/jdk/api/javac/tree/index.html) | |||
|
feedback
|
|
I had a problem where I had to access some source code (the initializer code for a non-String/non-primitive constant) and got it solved by accessing the source code via the Compiler Tree API. Here's the general recipe: 1. Create a custom TreePathScanner:
2. In your AbstractProcessor, save a reference to the current compilation tree by overriding the init method:
3. Get the initialization source code for the VariableElement (in your case an enum):
And that's it! In the end the fieldInitiliazer variable is going to contain the exact line(s) of code used to initialize my constant. With some tweaking you should be able to use the same recipe to access the source code of other element types in the source tree (i.e. methods, package declarations, etc) For more reading and examples read this article: Source Code Analysis Using Java 6 APIs. | ||||
|
feedback
|