0

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.

fredley
  • 31,101
  • 42
  • 135
  • 231
Thomas Uhrig
  • 29,419
  • 12
  • 58
  • 79

1 Answers1

1

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.

gizmo
  • 11,733
  • 6
  • 43
  • 60