I want to know if is possible to find class by annotation. Example:
@MyAnnotation(string = "some string")
class Annotated class { some methods...}
so can I find this class in my package where I have many other classes with another annotations...
Just wonder if it's possible
Thanks