< prev index next >

src/jdk.jdi/share/classes/com/sun/jdi/Bootstrap.java

Print this page




  26 package com.sun.jdi;
  27 
  28 /**
  29  * Initial class that provides access to the default implementation
  30  * of JDI interfaces. A debugger application uses this class to access the
  31  * single instance of the {@link VirtualMachineManager} interface.
  32  *
  33  * @author Gordon Hirsch
  34  * @since  1.3
  35  */
  36 
  37 @jdk.Exported
  38 public class Bootstrap extends Object {
  39 
  40     /**
  41      * Returns the virtual machine manager.
  42      *
  43      * <p> May throw an unspecified error if initialization of the
  44      * {@link com.sun.jdi.VirtualMachineManager} fails or if
  45      * the virtual machine manager is unable to locate or create
  46      * any {@link com.sun.jdi.connect.Connector Connectors}. </p>
  47      * <p>
  48      * @throws java.lang.SecurityException if a security manager has been
  49      * installed and it denies {@link JDIPermission}
  50      * <tt>("virtualMachineManager")</tt> or other unspecified
  51      * permissions required by the implementation.
  52      * </p>
  53      */
  54     static public synchronized VirtualMachineManager virtualMachineManager() {
  55         return com.sun.tools.jdi.VirtualMachineManagerImpl.virtualMachineManager();
  56     }
  57 }


  26 package com.sun.jdi;
  27 
  28 /**
  29  * Initial class that provides access to the default implementation
  30  * of JDI interfaces. A debugger application uses this class to access the
  31  * single instance of the {@link VirtualMachineManager} interface.
  32  *
  33  * @author Gordon Hirsch
  34  * @since  1.3
  35  */
  36 
  37 @jdk.Exported
  38 public class Bootstrap extends Object {
  39 
  40     /**
  41      * Returns the virtual machine manager.
  42      *
  43      * <p> May throw an unspecified error if initialization of the
  44      * {@link com.sun.jdi.VirtualMachineManager} fails or if
  45      * the virtual machine manager is unable to locate or create
  46      * any {@link com.sun.jdi.connect.Connector Connectors}.
  47      *
  48      * @throws java.lang.SecurityException if a security manager has been
  49      * installed and it denies {@link JDIPermission}
  50      * ("{@code virtualMachineManager}") or other unspecified
  51      * permissions required by the implementation.

  52      */
  53     static public synchronized VirtualMachineManager virtualMachineManager() {
  54         return com.sun.tools.jdi.VirtualMachineManagerImpl.virtualMachineManager();
  55     }
  56 }
< prev index next >