Reputation: 13
I want to use the code of an open source java library, but I don't need all classes/packages of this library, but only some of them. How can I automatically get to know which ones of the packages/classes/methods are employed when I submit a certain input to it?
Upvotes: 0
Views: 42
Reputation: 19
If you know how to use the java debugger, you will just have to click step into and step over. Then from the debug window, you will know what kinds of methods or classes are used.
Upvotes: 1