I added a breakpoint on my SWT-based application, and when Eclipse stops at it during a debug session I want to view the image referenced by an Image variable.
If I right click the variable and choose watch or inspect, all I see is what is returned from Image‘s toString method.
Is it possible?
The debug views cannot “show” an image. The custom “Detail Formatters” can only return a string to be shown, not an
ImageorImageDescriptor. It would make for a very nice extension though…