M
mani
How to read java Annotation field values from reflect class.
I am having a java class file Myclass.java. This file having the
annotation
@interface MyAnnotation {
boolean DuplicateValues();
boolean DuplicateVariables();
}
@MyAnnotation(DuplicateValues = true, DuplicateVariables = true)
I need to get get value of DuplicateValues, DuplicateVariables, that
means true,true from Myclass.class .
I am having a java class file Myclass.java. This file having the
annotation
@interface MyAnnotation {
boolean DuplicateValues();
boolean DuplicateVariables();
}
@MyAnnotation(DuplicateValues = true, DuplicateVariables = true)
I need to get get value of DuplicateValues, DuplicateVariables, that
means true,true from Myclass.class .