I am unable to check the flow of execution of my j2me application using breakpoint. I am using Netbeans IDE.Googling it I came to know that after setting a breakpoint,I need to run the app and then when the AMS reaches the breakpoint,if I go on pressing F6,i'll get to know the flow of execution .But it doesnt seem to work for me.
A:
If the IDE is not doing what you want, maybe try to add this code right before your breakpoint:
try{throw new RuntimeException();} catch(RuntimeException rex){rex.printStackTrace();}
QuickRecipesOnSymbianOS
2009-05-29 09:52:47
Nice. It's like, "what the hell happened? I saw a stack trace!" LOL
Joset
2009-05-29 11:58:20