Home
last modified time | relevance | path

Searched refs:ConstructorClass (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/reflect/annotations/
DExecutableParameterTest.java146 private static class ConstructorClass { class in ExecutableParameterTest
148 public ConstructorClass(Integer parameter1, Integer parameter2) {} in ConstructorClass() method in ExecutableParameterTest.ConstructorClass
151 public ConstructorClass(@AnnotationB @AnnotationD String parameter1, in ConstructorClass() method in ExecutableParameterTest.ConstructorClass
157 ConstructorClass.class.getDeclaredConstructor(Integer.class, Integer.class); in testConstructorGetParameterAnnotations()
164 ConstructorClass.class.getDeclaredConstructor(String.class, String.class); in testConstructorGetParameterAnnotations()
DAnnotatedElementParameterTest.java74 private static class ConstructorClass { class in AnnotatedElementParameterTest
76 public ConstructorClass(Integer parameter1, Integer parameter2) {} in ConstructorClass() method in AnnotatedElementParameterTest.ConstructorClass
79 public ConstructorClass(@AnnotationB @AnnotationD String parameter1, in ConstructorClass() method in AnnotatedElementParameterTest.ConstructorClass
84 Class<?> c = ConstructorClass.class; in testConstructorParameterAnnotations()