Home | History | Annotate | Download | only in features

Lines Matching defs:annotationClass

36       Class<? extends Annotation> annotationClass) {
39 annotationClass),
40 annotationClass.getAnnotation(TesterAnnotation.class));
42 annotationClass.getAnnotation(Retention.class);
44 String.format("%s must have a @Retention annotation.", annotationClass),
47 String.format("%s must have RUNTIME RetentionPolicy.", annotationClass),
50 String.format("%s must be inherited.", annotationClass),
51 annotationClass.getAnnotation(Inherited.class));
56 method = annotationClass.getMethod(propertyName);
59 annotationClass, propertyName));
63 annotationClass, propertyName),
66 annotationClass, propertyName, annotationClass.getDeclaringClass()),
67 annotationClass.getDeclaringClass(), returnType.getComponentType());