You'll want to ask on the Google Web Toolkit groups: http://code.google.com/webtoolkit/community.html
<http://code.google.com/webtoolkit/community.html>I'll do what I can to answer your question, however. Setting a breakpoint means marking a line of code in your IDE where you want execution to stop. For instance, if you had the following code: String myString = "this is a string"; myString = myString + "plus more stuff"; System.out.println(myString); Right click on your IDE on the second line and hit "Toggle Breakpoint". When your program hits this line, assuming you are running in "Debug" mode and not "Run", it'll pause execution and drop you into a debug view. In this view, you will be able to set more breakpoints, watches (stop execution when a value changes), view the values of local variables and execute some limited amount of code. There are a ton of good debugging tutorials on the internet. You just have to do a search for "eclipse debug". Here's the first result I found: http://www.ibm.com/developerworks/library/os-ecbug/ On Fri, Apr 9, 2010 at 4:45 AM, Vik_Sintus <[email protected]>wrote: > I followed the the Stock Watcher example and am running smoothly until > the 'bug finding' part. > What is 'setting break points' means and how to do it > thanking you in advance > regards > Vik > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine for Java" group. > To post to this group, send email to > [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-appengine-java%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-appengine-java?hl=en. > > -- Ikai Lan Developer Programs Engineer, Google App Engine http://googleappengine.blogspot.com | http://twitter.com/app_engine -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
