Searched refs:AnnotatedClass (Results 1 – 4 of 4) sorted by relevance
47 private static class AnnotatedClass { class in ConstructorTest49 public AnnotatedClass() {} in AnnotatedClass() method in ConstructorTest.AnnotatedClass53 public AnnotatedClass(int a) {} in AnnotatedClass() method in ConstructorTest.AnnotatedClass56 public AnnotatedClass(int a, int b) {} in AnnotatedClass() method in ConstructorTest.AnnotatedClass60 public AnnotatedClass(int a, int b, int c) {} in AnnotatedClass() method in ConstructorTest.AnnotatedClass62 public AnnotatedClass(int a, int b, int c, int d) {} in AnnotatedClass() method in ConstructorTest.AnnotatedClass67 Class<?> c = AnnotatedClass.class; in testDeclaredAnnotation()98 Class<?> c = AnnotatedClass.class; in testGetDeclaredAnnotationsByType()127 Class<?> c = AnnotatedClass.class; in testGetAnnotationsByType()
46 private static class AnnotatedClass { class in MethodTest66 Class<?> c = AnnotatedClass.class; in testDeclaredAnnotation()99 Class<?> c = AnnotatedClass.class; in testGetDeclaredAnnotationsByType()131 Class<?> c = AnnotatedClass.class; in testGetAnnotationsByType()
46 private static class AnnotatedClass { class in FieldTest66 Class<?> c = AnnotatedClass.class; in testDeclaredAnnotation()99 Class<?> c = AnnotatedClass.class; in testGetDeclaredAnnotationsByType()131 Class<?> c = AnnotatedClass.class; in testGetAnnotationsByType()
36 Annotation [] annotations = AnnotatedClass.class.getDeclaredAnnotations(); in test_annotationType()53 List<Method> methods = Arrays.asList(AnnotatedClass.class.getDeclaredMethods()); in test_equals()66 mlist.add(AnnotatedClass.class.getDeclaredMethod(name, new Class[] {})); in test_equals()103 Annotation a1 = AnnotatedClass.class.getDeclaredAnnotations()[0]; in test_hashCode()107 Method m1 = AnnotatedClass.class.getDeclaredMethod("e34c", new Class[] {}); in test_hashCode()155 class AnnotatedClass { class