views:

164

answers:

0

I'm working on a Java Annotation Processor and have problems to understand how to use the API in practice. I have many different annotations and like to emit errors (and create code) depending on the parameters of the annotations.

What open source projects are out there that use "javax.lang.model.element" and can serve as an example of "how to do it"?

I already knew Quickcheck ( https://quickcheck.dev.java.net/ ) but this does primary code generation and not so much analysies (as far as I see ;) ).