1Java Debug Wire Protocol support
2
3This is a reasonably complete implementation, but only messages that are
4actually generated by debuggers have been implemented.  The reasoning
5behind this is that it's better to leave a call unimplemented than have
6something that appears implemented but has never been tested.
7
8An attempt has been made to keep the JDWP implementation distinct from the
9runtime, so that the code might be useful in other projects. Once you get
10multiple simultaneous events and debugger requests with thread suspension
11bouncing around, though, it's difficult to keep things "generic".
12