It may sound stupid but: is it possible to tell Eclipse to change some already compiled code (in a .class file) while debugging?
I would like to check a couple of things for some values. I know that if it is compiled I cannot change it, so it makes no sense to try this. Well, in this concrete case it does make sense.
I am also aware of the hot code replace functionality of Eclipse but it doesn't work for me because it is for source files.
EDIT: In my case I don't want to change the value of a variable. I would like to put a 1 instead of a 0 in this call within a .class file
getTabFolder().setSelection(0);