I have some collections that I would like to analyze in the Eclipse debugger. I am interested in a particular attribute of each element.
Let\'s take an example with
I think, the Eclipse Debugger feature you are interested is called logical structures. You could define a logical structure in Eclipse preferences (Java/Debug/Logical structures), where you could write such an expression (hopefully), and then on the variables view you could replace the display of the list in the pop-up menu.
See this blog post for basic ideas: http://www.javalobby.org/forums/thread.jspa?threadID=16736&messageID=91823528
The Display View provides you with the ability to execute custom code at each breakpoint. Just read out your data structure at the breakpoint and print it out to the console.