Given this method:
public final void foo (List<MyClass> bar){ .. }
I want to be able to call this method reflectively. In order for getMethod to work, I have to change it to:
public final void foo (List bar){ .. }
This does not seem right for obvious reasons, but no combination of inputs to getMethod seem to work otherwise. I have searched high and low on Google to no avail. Any advice?
Cheers and Thanks!