How can I retrieve the value of an annotation on the annotated method??
I have:
@myAnnotation(attribute1 = value1, attibute2 = value2)
public void myMethod()
{
//I want to get value1 here
}
How can I retrieve the value of an annotation on the annotated method??
I have:
@myAnnotation(attribute1 = value1, attibute2 = value2)
public void myMethod()
{
//I want to get value1 here
}