debugging technique
i have a java interface .
it has approx 70 member variable with constant values defined in each of them.
like this ,
interface A
{
public static final String x="blah blah";
public static final String y="blah blah";
public static final String z="blah blah";
public static final String w="blah blah";
..............
..............
70 times say
}
i want a debugiing technique (in eclipse) which will help me to find out which variable is picked up when its invoked for some operation.
it would be bad to set breakpoints on all the statements
Message was edited by:
Unknown_Citizen

