Skip to main content

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

good, i know i have to write in there. but how to write it??

s=3 didnt work !!


----- Original Message ----- 
From: "Darin Wright" <Darin_Wright@xxxxxxxxxx>
To: <eclipse-dev@xxxxxxxxxxx>
Sent: Friday, August 27, 2004 3:53 PM
Subject: 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
> _______________________________________________
> eclipse-dev mailing list
> eclipse-dev@xxxxxxxxxxx
> To change your delivery options, retrieve your password, or unsubscribe
from this list, visit
> http://dev.eclipse.org/mailman/listinfo/eclipse-dev
>



Back to the top