7

是否有一个 Eclipse 插件可以让我在断点处暂停时查看图像变量?例如,我想在检查 BufferedImage 对象时查看图像,而不是查看它的 toString 值。

4

1 回答 1

0

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)...

于 2012-05-17T10:29:05.593 回答