When using gdb to debug there are a couple of ways to automate the actions performed when a break point is hit. This is good for cases where I only have compiled code with debug symbols, not source code. It is also nice when I want to instrument something interactively without relying on code reloading to insert print statements.
Is there a way to do this with the Eclipse debugger and Java code? All I need is a way to print objects and variables and then continue from the breakpoint.
