Is there an Eclipse plugin that will let me view an image variable while I’m paused at a breakpoint? e.g. I would like to see the image when inspecting a BufferedImage object instead of seeing it’s toString value.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The extension point
org.eclipse.jdt.debug.javaLogicalStructuresis 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)…