I have the Java byte-code from an external library (and only the byte-code!). There is no source available. Some classes of this library have public or package-local fields. How can I find out were this fields are used? The same question for public methods.
I have the Java byte-code from an external library (and only the byte-code!). There
Share
I would use a tool like jd-gui to get some version of the sources, attached them to the library and then you should be able to use the call-hierarchy function on it.