Is it possible to get the type of a generic parameter?
An example:
public final class Voodoo { public static void chill(List> aListWithTy
One construct, I once stumbled upon looked like
Class persistentClass = (Class) ((ParameterizedType)getClass().getGenericSuperclass()) .getActualTypeArguments()[0];
So there seems to be some reflection-magic around that I unfortunetly don't fully understand... Sorry.