Reputation: 4747
I have a closed source Java application for which vendor has provided APIs for customization. As I have no other documents, i rely completely on the API's javadoc.
I want to trace what methods are actually called in different classes for a particular use case. Is there any way to do that with eclipse?
Upvotes: 1
Views: 303
Reputation: 11669
Java Decompiler has an Eclipse plugin, supporting Java 6, and works pretty well to decompile source and see what's inside the class files while debugging.
Upvotes: 0
Reputation: 8534
JadClipse is a plug-in that allows you to decompile classes using jad, decompilation is available at the time of debugging.
There are some limitations, jad doesn't support java-5, and try catch functions don't always align nicely, but it can give you a good idea of whats going on inside.
See this thread too is-jad-the-best-java-decompiler
Upvotes: 1
Reputation: 17810
You need to use eclipse TPTP (http://www.eclipse.org/tptp/)
Personally I would use VisualVM or Netbeans profiler if possible
Upvotes: 0
Reputation: 24788
Most profilers (like YourKit and JProfiler) support Eclipse integration.
Upvotes: 1