As I need annotation scanning in a project I made some extensions, mainly an AnnotationScanner providing callbacks for the annotation levels (class, method, parameter, field).
Interesting. Any thoughts about adding a query capability? For example, I need the ability find specific (matching) annotations.
@Foo(name="bar")
public class MyClass ...
@Foo(name"tavern")
public class MyOtherClass ...
I would like to be able to query the AnnotationDB for not just those objects annotated with "Foo", but specifically one with annotation = "Foo" and name = "bar".
This project appears very dead.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Sources of my extensions
Interesting. Any thoughts about adding a query capability? For example, I need the ability find specific (matching) annotations.
@Foo(name="bar")
public class MyClass ...
@Foo(name"tavern")
public class MyOtherClass ...
I would like to be able to query the AnnotationDB for not just those objects annotated with "Foo", but specifically one with annotation = "Foo" and name = "bar".
This project appears very dead.