panschk
panschk

Reputation: 3272

Eclipse "Enhanced Class Decompiler" plugin does not decompile when debugging

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

Upvotes: 39

Views: 38208

Answers (2)

Sayantan Mandal
Sayantan Mandal

Reputation: 1336

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

Upvotes: 66

panschk
panschk

Reputation: 3272

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.

Upvotes: 42

Related Questions