Home | History | Annotate | Download | only in reflect

Lines Matching defs:getConstructor

107                 .getConstructor(Object.class);
127 ctor1 = ConstructorTestHelper.class.getConstructor(new Class[0]);
143 .getConstructor(String[].class);
147 .getConstructor(Object.class);
154 .getConstructor();
164 .getConstructor(Object.class, Object.class);
170 .getConstructor();
180 ctor1 = ConstructorTestHelper.class.getConstructor(
182 ctor2 = ConstructorTestHelper.class.getConstructor(Object.class);
193 Constructor<? extends ConstructorTestHelper> ctor = pclass.getConstructor(new Class[0]);
208 .getConstructor(new Class[0]);
224 .getConstructor(new Class[0]);
261 .getConstructor(new Class[0]);
279 .getConstructor(new Class[0]);
292 .getConstructor(parms);
306 .getClass().getConstructor(new Class[0]);
317 .getClass().getConstructor(parms);
327 .getConstructor(Object.class, Object.class);
348 .getClass().getConstructor(new Class[0]);
358 .getConstructor();
381 .getConstructor(new Class[0]);
397 getConstructor(parms);
413 assertEquals(c2.getConstructor(new Class[0]), c2.getConstructor((Class[]) null));
420 // ...but not with getConstructor (which only returns public constructors).
422 c1.getConstructor((Class[]) null);