Please note : This help page is not for the latest version of Enterprise Architect. The latest help can be found here.
Topic |
Prev | Next |
Using the Run Panel
The 'Run' panel provides a set of buttons for building and running an application that is being analyzed. After making modifications to the code base, you can simply click on 'Build', then click on buttons to begin execution of the updated application, pausing or stepping through code as required.
Available Facilities
Facility |
Description |
See also |
---|---|---|
Build |
Click on the drop-down arrow to display a short menu of commands for building application source code
|
Build Application |
Start |
Click on the drop-down arrow to display a short menu of commands
|
Run the Debugger |
Pause |
Pause execution of the application being debugged. |
Run the Debugger |
Step In |
Execute the next line of source code, stepping into any method that is called. Execution is paused before executing the first executable line in the called method. If source code for the called method is not available, the debugger will return immediately to the calling code. |
Run the Debugger |
Step Over |
Execute the next line of source code, without pausing inside any methods called by that line. The execution point will move to the next source line in the current context. |
Run the Debugger |
Step Out |
Automatically run to the end of the current context/method and return to the calling context. Execution will pause again, upon return to the calling context. |
Run the Debugger |
Stop |
Terminate execution of the application being debugged. |
Run the Debugger |