views:

30

answers:

1

Hello,

How/am I able, using introspection or reflection get the parameters a method 1 level up in the call stack and it's values ?

+1  A: 

Only through the debugging interface, not from within the Java code.

Why do you want to do that anyway? As part of productive code, it would violate all kinds of design principles.

Michael Borgwardt
Simply for logging.
Maxim Veksler