Skip to main content

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

> hi, i try to checkout the Debugger in Eclipse 
> http://www-106.ibm.com/developerworks/opensource/library/os-ecbug/
> 
> 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?
> 

This sort of question should be posted on the jdt newsgroup, rather than 
this mailing list. 

However, you can set the condition fo a line breakpoint in the properites 
dialog (right click on the breakpoint, and select "Properties").

Darin


Back to the top