Hello, I want to find a way to do a debug probe in Java. I'm used to working in Wingware Python IDE and it lets me set a breakpoint and once the execution reaches it, I have a Python shell, where I can execute arbitrary Python code in the context of a place, where the execution is paused. So I want to do the same in Java, i.e. set a breakpoint and get to know what would certain code do if I'd place it directly after that bp.
Edit: I'm using Eclipse. Where should I type? :)