Searched refs:UnreflectTester (Results 1 – 2 of 2) sorted by relevance
406 static class UnreflectTester { class in Main413 private UnreflectTester(String val) { in UnreflectTester() method in Main.UnreflectTester420 public UnreflectTester(String val, boolean unused) { in UnreflectTester() method in Main.UnreflectTester446 UnreflectTester instance = new UnreflectTester("unused"); in testUnreflects()447 Method publicMethod = UnreflectTester.class.getMethod("publicMethod"); in testUnreflects()453 Method publicStaticMethod = UnreflectTester.class.getMethod("publicStaticMethod"); in testUnreflects()458 Method privateMethod = UnreflectTester.class.getDeclaredMethod("privateMethod"); in testUnreflects()469 Method privateStaticMethod = UnreflectTester.class.getDeclaredMethod("privateStaticMethod"); in testUnreflects()480 Constructor privateConstructor = UnreflectTester.class.getDeclaredConstructor(String.class); in testUnreflects()488 instance = (UnreflectTester) mh.invokeExact("abc"); in testUnreflects()[all …]
943 public static class UnreflectTester extends Tester { class in Main1045 UnreflectTester.main(); in main()