is it possible to "go back" in java eclipse debugger like dragging the arrow in VS

Solution 1:

The feature is called 'Drop to frame' right click on any line in stack, choose 'Drop to frame' and you go back to selected method beginning. Check Eclipse help topic.

drop to frame picture

Solution 2:

Sadly it is not possible to go back to a single line, the JVM does not support this. You can only jump to the start of the current function, as you propably know (Drop to frame).

Solution 3:

It's not out of beta yet, but Chronon is a promising debugger that has a "step back" feature.