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 - build the current application, according to the currently active Analyzer script
  • Clean - run the Analyzer Clean command to delete intermediate files from the current application
  • Rebuild - run the Analyzer Rebuild command as defined in the currently active Analyzer script
  • Cancel Build - cancel the currently executing build
Build Application

Start

Click on the drop-down arrow to display a short menu of commands

  • Run - resume execution of the application process that is currently being debugged - if no process is currently being debugged, then start the application specified the debug options of the active analyzer script and attach the Debugger to that application process
  • Attach to Process - display a list of executing processes, select and attach to a process for the purpose of debugging
  • Show Execution Point - display and highlight the line of source code that corresponds to the current execution point
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