How can I invoke a particular method on a generic type? I want to invoke a a getter/setter method.
Edit: Ex:
class BurningSun<T>
{
public void kitchenSink()
{
Class c = Class.forName(/*What to put here for <T> ?*/)
/*
Reflections code
*/
}
}
Hmmm, so how are the bean's getter methods invoked and set in various frameworks?