Setting the Debugger Start Options

By setting up the debugger start option, you are specifying how you would like the debugger to behave when you start a new debugging session. Specifically, decide if you want the debugger to execute until a breakpoint is reached, or if you want the debugger to stop when it reaches your project's code (for example, at the beginning of your application's main method).

The start debugger setting is a project property which you can set in any of the following ways:

Next, choose one of the available Start Debugging Options:

run_until_breakpoint_occurs Set Start Debugging Option to Run Until a Breakpoint Occurs
When you start debugging, the debugger will let the program you are debugging execute until a breakpoint is reached.
set_start_debug_to_step_over Set Start Debugging Option to Step Over
When you start debugging, the debugger will let the program you are debugging execute until a method in a tracing-enabled class is reached, but it will not stop in class static initializer method.
set_start_debug_option_to_step_into Set Start Debugging Option to Step Into
When you start debugging, the debugger will let the program you are debugging execute until any method, including a class static initializer method.

Note: Unlike previous releases of JDeveloper, you cannot start debugging by pressing the step_over Step Over or step_into Step Into buttons. Step over and step into will only cause stepping on an already-started debugging process.


Related topics

Debugging a Project in JDeveloper
Stepping Into a Method
Stepping Over a Method
About Breakpoints

 

Copyright © 1997, 2004, Oracle. All rights reserved.