Searched refs:methodInF (Results 1 – 1 of 1) sorted by relevance
577 Method methodInF = F.class.getDeclaredMethod("sayHi"); in testUnreflects() local578 lookupInG.unreflect(methodInF).invoke(g); // prints "G.sayHi()" in testUnreflects()579 lookupInG.in(G.class).unreflectSpecial(methodInF, G.class).invoke(g); // prints "F.sayHi()" in testUnreflects()580 lookupInG.unreflectSpecial(methodInF, G.class).bindTo(g).invokeWithArguments(); in testUnreflects()