• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Surpassing the initial breakpoints, which are not visible in Breakpoint window !

 
Ranch Hand
Posts: 244
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Member ,

I have an application.In this application when I execute it in Run mode it runs fine . But whenever I try to run it in Debug
mode it got stuck.At that moment I need to press F8 twice to resume.There is no any break point is being appear for these two initial breaks.Please tell me what should I do ? I dug internet but no success.



Thanks in advance !
 
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What type of application (or Eclipse project type)? In the debug options there is a checkbox for "Stop in main" - if that is checked you get an automatic breakpoint at the start of the app.

If that doesn't help, more details about exactly what you are doing would help.
 
Fidel Edwards
Ranch Hand
Posts: 244
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Peter Johnson wrote:What type of application (or Eclipse project type)? In the debug options there is a checkbox for "Stop in main" - if that is checked you get an automatic breakpoint at the start of the app.



Thanks Peter for reply !

I am having a Java Swing Application. In this application there is a class having main function (it is fine no problem in it ). In Eclipse 3.4 when I run my application in debug mode it got stuck at the exception shown below (As shown in Debug stack trace).



To surpass it I press F8 once. But again it throws another exception


Again pressing F8 I move to the main login screen.So I want to jump these two F8 press means I want to directly reach to the main login screen.I hope that would be more clear to you.


Again Thanks !


 
Fidel Edwards
Ranch Hand
Posts: 244
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Anybody active in this forum !

 
Peter Johnson
author
Posts: 5856
7
Android Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry, I don't do Swing apps, or I would try to help. I have no idea why those two lines of code would cause an automatic breakpoint. Try unchecking the three "Suspend for ..." option in the Java | Debug preferences and see if that helps.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic