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.
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.
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.
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.