Kai
Kai

Reputation: 291

Where is Step out in eclipse ide debugger?

When I debug my Java EE application in the Eclipse IDE, I don't see a "Step out" option in the debugger. I only see "Step over", "Step into" and "Step return".

When I have a huge amount of lines I want that the debugger only stops at my breakpoints, so "Step out" is my solution, right?

Upvotes: 4

Views: 3339

Answers (3)

Edwin Buck
Edwin Buck

Reputation: 70909

It's the little arrow icon that looks like it is originating from two broken blue lines, moving upwards, and then to the right.

You can see it in the Java debugging perspective.

Upvotes: 1

NPE
NPE

Reputation: 500357

"Step Return" is the command you're looking for. You can press F7 to invoke it.

From the Eclipse manual:

Select the Step Return [icon] command to return from a method which has been stepped into. Even though we return from the method, the remainder of the code inside the method will be executed normally.

Upvotes: 6

Grammin
Grammin

Reputation: 12205

Step return is step out, its also hotkey F7

Upvotes: 6

Related Questions