reflection cant get parameterized method signature?
my sample:
interface Root<T>{
public void prt(T t );
}
interface A extends Root<String>{
}
public class Reflecttest {
public static void main(String[] args){
Class cl=A.class;
for (Method m:cl.getMethods()){
m.getParameterTypes();
....................
//som reflection like above, but i cant get signature like public void prt(String str); but public void prt(Object o);
//how can i get the parameterized method signature
}
}

