Possible to use reflection to get constructor params/args



Hi,

Is it possible to use reflection to get the param/arg names i and d in second constructor? ( I am using jdk 1.4).

cheers,

//mikael

public class Constructor1 {
public Constructor1()
{
}

protected Constructor1(int i, double d)
{
}
}
.