Eclipse Class File Metadata
Posted
by Alex
on Stack Overflow
See other posts from Stack Overflow
or by Alex
Published on 2010-06-07T02:27:29Z
Indexed on
2010/06/07
2:32 UTC
Read the original article
Hit count: 295
In Visual Studio, I can obtain a succinct list of public methods/members exposed in a class for which I do not have the source (i.e. bundled inside a DLL) by pressing F12 (GoToDefinition).
Similarly, I am learning the Android API - in Eclipse. Jumping to an Android framework method definition produces decompilation output which is not intuitive to read, and is very verbose. To mimic results like Visual Studio, I am considering several options:
- How can I format the decompilation output to be 'cleaner' - I have looked through Eclipse's preferences menus and have not found a way to do this.
- How do I 'add corresponding source files' once Google provides it, so that jumping to definition yields the actual definition?
- Is there a plugin that does this already? I looked into Jadclipse, but that project has not been updated in several years, and is still a decompiler.
Thank you in advance.
© Stack Overflow or respective owner