Method Summary |
|
public static Annotation | getAnnotation(String annotationName, ClassInfo classInfo) Return the annotation with a specific name for a specific class.
Parameters: annotationName - the annotation name Parameters: classInfo - the ClassInfo object to find the annotation on. |
public static Annotation | getAnnotation(String annotationName, MethodInfo methodInfo) Return the annotation with a specific name for a specific method.
Parameters: annotationName - the annotation name Parameters: methodInfo - the MethodInfo object to find the annotation on. |
public static Annotation | getAnnotation(String annotationName, ConstructorInfo constructorInfo) Return the annotation with a specific name for a specific constructor.
Parameters: annotationName - the annotation name Parameters: constructorInfo - the ConstructorInfo object to find the annotation on. |
public static Annotation | getAnnotation(String annotationName, FieldInfo fieldInfo) Return the annotation with a specific name for a specific field.
Parameters: annotationName - the annotation name Parameters: fieldInfo - the FieldInfo object to find the annotation on. |
public static List | getAnnotations(String annotationName, ClassInfo classInfo) Return a list with the annotations with a specific name for a specific class.
Parameters: annotationName - the annotation name Parameters: classInfo - ClassInfo object to find the annotation on. |
public static List | getAnnotations(String annotationName, MethodInfo methodInfo) Return a list with the annotations with a specific name for a specific method.
Parameters: annotationName - the annotation name Parameters: methodInfo - the MethodInfo object to find the annotation on. |
public static List | getAnnotations(String annotationName, ConstructorInfo constructorInfo) Return a list with the annotations with a specific name for a specific constructor.
Parameters: annotationName - the annotation name Parameters: constructorInfo - the ConstructorInfo object to find the annotation on. |
public static List | getAnnotations(String annotationName, FieldInfo fieldInfo) Return a list with the annotations with a specific name for a specific field.
Parameters: annotationName - the annotation name Parameters: fieldInfo - the FieldInfo object to find the annotation on. |