BestPractices
BestPractices

Reputation: 12876

Eclipse: How debug without source jar?

I am using Eclipse 3.4. I want to be able to put a breakpoint in a line of code that's in a jar for which I dont have the source code and no source code is available. How can I do this?

Upvotes: 4

Views: 6142

Answers (2)

Ron
Ron

Reputation: 1952

Even without the source you can view the outlines for classes and from the outline view, set breakpoints on methods.

If you must see some representation of the source, these are both pretty good: http://jadclipse.sourceforge.net/wiki/index.php/Main_Page and http://java.decompiler.free.fr/

Upvotes: 3

CookieOfFortune
CookieOfFortune

Reputation: 13974

Try this: Bytecode Outline Plugin for Eclipse

Upvotes: 2

Related Questions