简体   繁体   English

Eclipse插件在调试时查看图像

[英]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? 是否有一个Eclipse插件可以让我在断点处暂停时查看图像变量? eg I would like to see the image when inspecting a BufferedImage object instead of seeing it's toString value. 例如,我希望在检查BufferedImage对象时看到图像,而不是看到它的toString值。

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. 扩展点org.eclipse.jdt.debug.javaLogicalStructures用于在“变量”视图中提供变量的结构化视图......不幸的是,它只能为您提供基于字符串的结果。

In theory, you can add a new plug-in which adds a new command to the "Variables" view (the selection is of type JDILocalVariable )... 从理论上讲,您可以添加一个新插件,在“Variables”视图中添加一个新命令(选择类型为JDILocalVariable )...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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