I am used to work on Visual Studio for C# coding and eclipse for Java coding. Though my experience with eclipse is very positive, I lack the nice and welcoming text file that VS generates for IL classes without source attached (third-party or not in solution).
I need sometimes to browse just the signature ("header") of the java .class file (included javadoc would be nice too), and in most of the time I'm not interested in decompiled java bytecode.
Is there a plugin that does that?
I looked at Bytecode Outline referenced here at SO
but that's still not the thing I'm looking for.
I really need to click on a class file or go to type declaration
and be able to see the class outline at the main editor window
with javadoc if available.
Thanks!
If you have jar that includes the class files you can just add it to the project classpath
Project>Properties>Java Build Path>Libraries>Add JARs...
. After this you can browse the method signatures in theProject Explorer
insideReferenced Libraries
.You might be able to do this for a class file directly, but at least you can just wrap it into a jar to do this.