Thank you Ikai for your clear explanation. I will follow your instruction sorry for posting the subject on the wrong place. Regards Vik
On Apr 10, 3:37 am, "Ikai L (Google)" <[email protected]> wrote: > 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: > -- 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.
