So, I've got a Swing GUI that, for testing purposes (the other applications that my task will interact with aren't all developed yet), I'd like to be able to give a "debug console" to.
The idea being that I could use this console to explicitly set values in my model, and verify that the appropriate GUI elements get updated. The Eclipse debugger's "display tab" is basically exactly what I want - once you hit a breakpoint, you can type in Java code that's applicable to the current method's context, and execute it as if that code was part of the source at the current breakpoint.
But, I want this as part of my application - without having to run a separate application (Eclipse), set a breakpoint, hit the breakpoint, etc. (That's what I'm doing now - it works, but it's slightly annoying.) Is there any existing library that includes something like that?