Spec-Zone .ru
спецификации, руководства, описания, API
Java Debug Interface

Uses of Interface
com.sun.jdi.VirtualMachine

Packages that use VirtualMachine
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.connect This package defines connections between the virtual machine using the JDI and the target virtual machine. 
 

Uses of VirtualMachine in com.sun.jdi
 

Subinterfaces of VirtualMachine in com.sun.jdi
 interface PathSearchingVirtualMachine
          A virtual machine which searches for classes through paths
 

Methods in com.sun.jdi that return VirtualMachine
 VirtualMachine Mirror.virtualMachine()
          Gets the VirtualMachine to which this Mirror belongs.
 

Uses of VirtualMachine in com.sun.jdi.connect
 

Methods in com.sun.jdi.connect that return VirtualMachine
 VirtualMachine ListeningConnector.accept(Map arguments)
          Waits for a target VM to attach to this connector.
 VirtualMachine AttachingConnector.attach(Map arguments)
          Attaches to a running application and and returns a mirror of its VM.
 VirtualMachine LaunchingConnector.launch(Map arguments)
          Launches an application and connects to its VM.
 


Java Debug Interface