I have a project in Java that I am stepping through and when I\'m using external libraries e.g. jdom.jar I end up hammering step over to get out on the \"Class
There are various solutions:
You can download the sources and attach them (select the dependency in the Package Explorer, open the Properties dialog for it, set the path under "Java Source Attachment")
If you don't have the source, install JADClipse
Use "Step Over" (F6) instead of "Step Into" (F5)
If you accidentally stepped into some code, use "Step Return" (F7) to run the whole method and resume debugging after it has returned.
You can tell Eclipse what you don't want to step into using "step filters".