< prev index next >

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

Print this page




  26 /**
  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  * <dl style="font-family:'DejaVu Sans', Arial, Helvetica, sans serif">
  34  * <dt class="simpleTagLabel">Tool Guides:</dt>
  35  * <dd> {@extLink jhsdb_tool_reference jhsdb}</dd>
  36  * </dl>
  37  *
  38  * @moduleGraph
  39  * @since 9
  40  */
  41 module jdk.hotspot.agent {
  42     requires java.datatransfer;
  43     requires java.desktop;
  44     requires java.rmi;
  45     requires java.scripting;


  46 
  47     // RMI needs to serialize types in this package
  48     exports sun.jvm.hotspot.debugger.remote to java.rmi;
  49 

  50 }


  26 /**
  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  * <dl style="font-family:'DejaVu Sans', Arial, Helvetica, sans serif">
  34  * <dt class="simpleTagLabel">Tool Guides:</dt>
  35  * <dd> {@extLink jhsdb_tool_reference jhsdb}</dd>
  36  * </dl>
  37  *
  38  * @moduleGraph
  39  * @since 9
  40  */
  41 module jdk.hotspot.agent {
  42     requires java.datatransfer;
  43     requires java.desktop;
  44     requires java.rmi;
  45     requires java.scripting;
  46     requires jdk.dynalink;
  47     requires transitive jdk.scripting.nashorn;
  48 
  49     // RMI needs to serialize types in this package
  50     exports sun.jvm.hotspot.debugger.remote to java.rmi;
  51 
  52     exports sun.jvm.hotspot.utilities.soql.wrapper;
  53 }
< prev index next >