Hello,
How can I get the all variable values in the class including all the globale
constant values and local variable values ??
For example,
public class A {
private static final String s = "Hello World";
public int sum(int a, in b) {
int x = 100;
return a + b + x;
}
}
How can I get the value of "x" in the method sum and the value of String s
???
Eric
==========================
If you know what you are doing,
it is not called RESEARCH!
==========================
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]