Eclipse plugin for viewing images during debugging

Is there an Eclipse plugin that will allow me to view an image variable while I'm paused at a breakpoint? For example, I would like to see the image when checking the BufferedImage object, and not see its toString value.

+6
source share
1 answer

The org.eclipse.jdt.debug.javaLogicalStructures extension point is used to represent a structured representation of variables in the Variables view ... and, unfortunately, it can only give row-based results.

In theory, you can add a new plugin that adds a new command to the Variables view (the choice is of type JDILocalVariable ) ...

0
source

Source: https://habr.com/ru/post/915949/


All Articles