Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipse-dev] Debugger question Eclipse

hi, i try to checkout the Debugger in Eclipse
 
in the site it tells about  Conditional breakpoints .
 
i have this code snuppit.
---------------------------------------
        int s;
        for (int i = 0; i < 10; i++)
        {
            s = i;
            System.out.println("i " + i);       
        }
---------------------------------------
 
how can i make the debugger stops when s = 3 for example?
 
regards.
 
Sako.

Back to the top