< prev index next >

src/jdk.hotspot.agent/share/classes/module-info.java

Print this page




  27  * Defines the implementation of the HotSpot Serviceability Agent.
  28  *
  29  * <p> This module includes the <em>{@index jhsdb jhsdb tool}</em> tool to
  30  * attach to a running Java Virtual Machine (JVM) or launch a postmortem
  31  * debugger to analyze the content of a core-dump from a crashed JVM.
  32  *
  33  * @toolGuide jhsdb
  34  *
  35  * @moduleGraph
  36  * @since 9
  37  */
  38 module jdk.hotspot.agent {
  39     requires java.datatransfer;
  40     requires java.desktop;
  41     requires java.rmi;
  42     requires java.scripting;
  43 
  44     // RMI needs to serialize types in this package
  45     exports sun.jvm.hotspot.debugger.remote to java.rmi;
  46 



  47 }


  27  * Defines the implementation of the HotSpot Serviceability Agent.
  28  *
  29  * <p> This module includes the <em>{@index jhsdb jhsdb tool}</em> tool to
  30  * attach to a running Java Virtual Machine (JVM) or launch a postmortem
  31  * debugger to analyze the content of a core-dump from a crashed JVM.
  32  *
  33  * @toolGuide jhsdb
  34  *
  35  * @moduleGraph
  36  * @since 9
  37  */
  38 module jdk.hotspot.agent {
  39     requires java.datatransfer;
  40     requires java.desktop;
  41     requires java.rmi;
  42     requires java.scripting;
  43 
  44     // RMI needs to serialize types in this package
  45     exports sun.jvm.hotspot.debugger.remote to java.rmi;
  46 
  47     // for SA API
  48     exports sun.jvm.hotspot.api;
  49     uses sun.jvm.hotspot.api.Command;
  50 }
< prev index next >