How can I watch the contents of several variables (for example, TreeSet\'s) simultaneously? I can watch contents of one TreeSet, clicking on it in \"Variables\" window, but
Add watchpoint and while debugging you can see variable in debugger window perspective under variable tab.
OR
Add System.out.println("variable = " + variable); and see in console.