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

[682 byte] By [Unknown_Citizena] at [2007-11-27 2:26:16]
# 1
variables aren't invoked. and an interface can't have member variables, which static variables aren't, anyway. not really sure what you're getting at here to be honest
georgemca at 2007-7-12 2:35:22 > top of Java-index,Java Essentials,Java Programming...