Reputation: 67
I am finding Java classes by using ctrl + shift + t, I click on the class I wish to see (example Scanner or Random in java.Utils) the type hierarchy for and it opens a tab that says, "Source not found." I read an answer that said my build path was not correct, but my programs uses these with no problem. Can I fix this so I can start to study type hierarchy or am I doing something wrong? Page after I click the class in menu
Upvotes: 3
Views: 317
Reputation: 2180
If you want to see the all jar file content you can install eclipse Java Decompiler Plugin
JAD Decomplier plug-in for Eclipse version 3.x and 4.x.
update site: http://feeling.sourceforge.net/update
Steps:
Open Eclipse IDE.
Upvotes: 0
Reputation:
Your IDE can find the compiled Java classes, but not the Java source.
You may find a src.zip
in your JDK folder - try to attach that in Eclipse's JRE/JDK setting.
Upvotes: 1