Eclipse "Enhanced Class Decompiler" plugin does not decompile when debugging
Asked Answered
M

2

38

Problem description: Decompile works fine when viewing a class (i.e. Ctrl+Shift+T), but not when stepping into code from the debugging perspective - instead the "Class File Viewer" is opened. Version Used: Eclipse Oxygen and Enhanced Class Decompiler 3.0.0

Mychael answered 23/1, 2018 at 7:52 Comment(0)
S
66

This will work on oxygen and later version as well:

Click on "Window > Preferences > General > Editors > File Associations"

Change default to your for both .class association.

"*.class" : "Class Decompiler Viewer" is selected by default.

"*.class without source" : "Class Decompiler Viewer" is selected by default.

enter image description here

Subterfuge answered 6/6, 2018 at 14:11 Comment(0)
M
42

This is how it should look at the beginning – at least in my case this did not allow me to decompile directly from the suspended threads view. Decompiler Viewer is default, but will still not show the decompiled class

1) Add „Java Editor“ (Probably any other would do as well) at make it default. Of course this does not work, but the idea is to trigger a config change again Setting (nonsense) "Java Editor" to trigger the change of editor to be registered

2) Set Class Decompiler viewer as Default again – now it should be possible to view the decompiled class directly from suspended threads.

Mychael answered 23/1, 2018 at 7:52 Comment(3)
This did not EXACTLY work for me. Instead, I had to do the same thing under the "class without source" file type.Jotting
The method of @matt forsythe above worked perfectly for me in Photon.Tsang
I did this and still get "source not found" while debugging, I had to click on "Edit Source Lookup Path" (or go to debug configuration>sources) and then "Restore defaults". Now it works as expected.Pilchard

© 2022 - 2024 — McMap. All rights reserved.