I'm not sure exactly what you need is just available.
JPDA (Java platform debugging architecture) allows you to create debuggers, so it is a good starting point if you want to delve into the internal components. There is a blog at JPDA , which may also be useful. Browse the Sun Developer Network JPDA page for links to documentation, FAQs, sample code, and forums.
Two interfaces that can be good starting points:
- com.sun.jdi.ObjectReference: java.lang.Class instance from the target virtual machine
- com.sun.jdi.VirtualMachine: virtual machine for debugging
source
share