public void Test(Group ptGroup) throws CommonFrameworkException, SQLException {
final Class1 input =new Class1();
input.setV1(v1);
Dispatcher.execute(input,
new CheckedFunction<Class1,
Void, CommonFrameworkException, SQLException>() {
@Override
public Void apply(Class1 daoInput) throws CommonFrameworkException, SQLException {
test1(daoInput);
return null;
}
}, Void.class);
I am trying to get all the methods from a method recursively by calling
getACallee*()but the results stop at.executein the below code and does not go into it and giveapplyandtest1in the output. I am interested to know if there's any way to get these.