Java Debug Interface

Uses of Package
com.sun.jdi

Packages that use com.sun.jdi
com.sun.jdi This is the core package of the Java Debug Interface (JDI), it defines mirrors for values, types, and the target VirtualMachine itself - as well bootstrapping facilities. 
com.sun.jdi.event This package defines JDI events and event processing. 
com.sun.jdi.request This package is used to request that a JDI event be sent under specified conditions. 
 

Classes in com.sun.jdi used by com.sun.jdi
AbsentInformationException
          Thrown to indicate line number or variable information is not available.
Accessible
          Provides information on the accessibility of a type or type component.
ClassNotLoadedException
          Thrown to indicate that the requested class has not yet been loaded through the appropriate class loader.
IncompatibleThreadStateException
          Thrown to indicate that the requested operation cannot be completed while the specified thread is in its current state.
InvalidTypeException
          Thrown to indicate a type mismatch in setting the value of a field or variable.
InvocationException
          Thrown to indicate an exception occurred in an invoked method within the target VM.
Locatable
          A mirror that has a Location.
Mirror
          A proxy used by a debugger to examine or manipulate some entity in another virtual machine.
ObjectReference
          An object that currently exists in the target VM.
PrimitiveType
          The type associated with non-object values in a target VM.
PrimitiveValue
          The value assigned to a field or variable of primitive type in a target VM.
ReferenceType
          The type of an object in a target VM.
Type
          The mirror for a type in the target VM.
TypeComponent
          An entity declared within a user defined type (class or interface).
Value
          The mirror for a value in the target VM.
VirtualMachine
          A virtual machine targeted for debugging.
 

Classes in com.sun.jdi used by com.sun.jdi.event
Locatable
          A mirror that has a Location.
Mirror
          A proxy used by a debugger to examine or manipulate some entity in another virtual machine.
 

Classes in com.sun.jdi used by com.sun.jdi.request
Locatable
          A mirror that has a Location.
Mirror
          A proxy used by a debugger to examine or manipulate some entity in another virtual machine.
 


Java Debug Interface