debugger

Hi,

Is there any way to find out where the program controller is moving from one line to another in a program during execution in esclipse.

Thanks.

[166 byte] By [tutikashilpaa] at [2007-11-27 11:18:32]
# 1

What do you mean "program controller"? You mean step through you code line-by-line? If so you can do this in the Eclipse debugger, you can step into (probably what you mean), step over or step return.

_helloWorld_a at 2007-7-29 14:31:27 > top of Java-index,Java Essentials,Java Programming...
# 2

I want see which statement is executed line by lin.How to set debudder in esclipse

tutikashilpaa at 2007-7-29 14:31:27 > top of Java-index,Java Essentials,Java Programming...
# 3

do you know how to open the Debugger perspective in Eclipse?:

window -- Open Perspective -- Debug

You can then put the cursor on the first line of the code you want to step through and place a break point there, click "debug" and you're off.

petes1234a at 2007-7-29 14:31:27 > top of Java-index,Java Essentials,Java Programming...
# 4

F6 key Steps through line-by-line

_helloWorld_a at 2007-7-29 14:31:27 > top of Java-index,Java Essentials,Java Programming...