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:
-
From the toolbar, click the
Set Start Debugging Option to Run Until a Breakpoint Occurs icon.
-
Choose T
ools | ProjectProperties
- Debugger.
Next, choose one of the available Start Debugging Options:
-
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 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 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 or
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.