Debugger's Button Bar
There are seven buttons on debugger window's button bar.
-
Break Point - turn on the
break point window. On Break Point window,
users can add, change and remove break points.
-
User Console - turn on the
user console window which keeps the
standard out from the program under debugging.
-
Data Window - to turn on the
data window which automatically
tracks the fields in the current class. Users can also explore
more detailed data on a selected object.
-
StepIn - execute next line, step into the method if the line
contains a method call.
-
Next - execute next line, do not step into method if the line
contains a method call.
-
Cont - continue execution of the program.
On debugger window's data panel, there are also some buttons which are
used to print or dump variables or objects.
-
Print - print a field or local variable specified in the
Expression field.
-
Dump - dump an object specified in the Expression field.
-
Statics - print all static fields in the current class.
-
Locals - print all the local variables in the current class.
-
Save - save the data history to a file.