简体   繁体   中英

Eclipse plugin to view image while debugging

Is there an Eclipse plugin that will let me view an image variable while I'm paused at a breakpoint? eg I would like to see the image when inspecting a BufferedImage object instead of seeing it's toString value.

The extension point org.eclipse.jdt.debug.javaLogicalStructures is used to provide the structured view of variables in the "Variables" view... and unfortunately it can only give you a string based result.

In theory, you can add a new plug-in which adds a new command to the "Variables" view (the selection is of type JDILocalVariable )...

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM