debugging tips
This is oversimplified problem ...but let me explain what i am targetting at .
here is a code....
int x=2
//some more code
int x=4 // control is here now....say ,Line-1
Now can i get the old value of x (i.e 2) standing in Line-1 in eclipse debugger ?
In fact ,i want to get the history of x standing at Line-1 .
is it possible by using eclipse debugger ? what to do ?

