Yeah, I was able to get conditionals to work. I added a varable int
test = 0

and incremented it in a loop and put in the condition of the break
point

test>50

and it stopped when test was 51.

A small workaround could be, insert

if(test>50)
     System.out.println("BREAK")

and put a break Point on the print line.

On Mar 2, 9:21 am, Evan Ruff <evan.r...@gmail.com> wrote:
> Hey guys,
>
> Quick question: Do conditional breakpoints work in Hosted Mode? I
> can't seem to get them to work properly in Eclipse. Basically, the
> debugger fires the breakpoint EVERY time, not just when the condition
> is true. This is a problem for me as I'm getting a funny NPE inside of
> a loop.
>
> Thanks!
>
> Evan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to Google-Web-Toolkit@googlegroups.com
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to