In this section, you will debug a Java program.
fFull.addElement (new Integer(1));
and double-click on the ruler to set a breakpoint.
The breakpoint icon indicates the status of the breakpoint. The plain blue breakpoint icon indicates that the breakpoint has been set, but not yet installed.
Note: Once the class is loaded by the Java VM, the breakpoint will be installed and a checkmark overlay will be displayed on the breakpoint icon.
main
method.
Note: You can also simply hit the debug button which will launch the currently selected resource or active editor. Select Java Application when you are prompted to select a way to debug VectorTest.
Note: The breakpoint now has a checkmark overlay since the class VectorTest was loaded in the Java VM.
new Vector()
from the line above
where the breakpoint is set, and from its context menu, select Inspect.
You can choose to disable Show Logical Structure to show the implementation details of these types.