Searched refs:UnreflectTester (Results 1 – 2 of 2) sorted by relevance
397 static class UnreflectTester { class in Main404 private UnreflectTester(String val) { in UnreflectTester() method in Main.UnreflectTester411 public UnreflectTester(String val, boolean unused) { in UnreflectTester() method in Main.UnreflectTester437 UnreflectTester instance = new UnreflectTester("unused"); in testUnreflects()438 Method publicMethod = UnreflectTester.class.getMethod("publicMethod"); in testUnreflects()444 Method publicStaticMethod = UnreflectTester.class.getMethod("publicStaticMethod"); in testUnreflects()449 Method privateMethod = UnreflectTester.class.getDeclaredMethod("privateMethod"); in testUnreflects()460 Method privateStaticMethod = UnreflectTester.class.getDeclaredMethod("privateStaticMethod"); in testUnreflects()471 Constructor privateConstructor = UnreflectTester.class.getDeclaredConstructor(String.class); in testUnreflects()479 instance = (UnreflectTester) mh.invokeExact("abc"); in testUnreflects()[all …]
943 public static class UnreflectTester extends Tester { class in Main1045 UnreflectTester.main(); in main()