< prev index next >

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

Print this page




   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Defines the implementation of the HotSpot Serviceability Agent.
  28  *









  29  * @moduleGraph
  30  * @since 9
  31  */
  32 module jdk.hotspot.agent {
  33     requires java.datatransfer;
  34     requires java.desktop;
  35     requires java.rmi;
  36     requires java.scripting;
  37 
  38     // RMI needs to serialize types in this package
  39     exports sun.jvm.hotspot.debugger.remote to java.rmi;
  40 
  41 }


   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /**
  27  * Defines the implementation of the HotSpot Serviceability Agent.
  28  *
  29  * <p> This module includes the <em>{@index jhsdb jhsdb}</em> tool that
  30  * can 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 }
< prev index next >