クラスAにメソッドがあります:
class Parameter {
...
}
class A {
private <T extends B> void call(T object, Parameter... parameters){
...
}
}
ここで、リフレクションを使用してメソッド「call」を取得したいのですが、
A a = new A();
// My question is what should be arguments in getDeclaredMethod
//Method method = a.getClass().getDeclaredMethod()
どうも。