how can I access class variable from my custom annotation in Java language? Is it possible?
@MyAnno
public class MyClass() {
String name;
String surname;
....
}
public @interface MyAnno{
// I want to access MyClass and get the class variable etc name, surname.
}