break

Description

The break command enables you to add or remove a breakpoint on a given occurrence.

Syntax

break <object> <op> <breakPointType> <data>

Arguments

object

Specifies the object. This specification must be #All, a valid class name, or a valid instance name.

Setting a breakpoint on a class implies setting a breakpoint on all its instances and subclasses.

op

Specifies the operation. The possible values are +, –, add, or remove. The default value is add.

breakPointType

Specifies the type of breakpoint. The possible values are as follows:

Saving Breakpoints

To save breakpoints, write them to a file (for example, myBreakPoints.cfg). After you have saved them, you can reinsert them next time you run the application by typing the following command:

   input myBreakPoints.CFG

Feedback