Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
JDK 17 jdk.jdi.jmod - JDI Tool
JDK 17 jdk.jdi.jmod is the JMOD file for JDK 17 JDI (Java Debug Interface) tool.
JDK 17 JDI tool compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\jdk.jdi.jmod.
JDK 17 JDI tool compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 JDI tool source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\jdk.jdi.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ module-info.java
/* * Copyright (c) 2014, 2019, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ /** * Defines the Java Debug Interface. * <p> * The Java Debug Interface (JDI) is a high level Java API providing * information useful for debuggers and similar systems needing access to the * running state of a (usually remote) virtual machine. * <p> * JDI provides introspective access to a running virtual machine's state, * Class, Array, Interface, and primitive types, and instances of those types. * <p> * JDI also provides explicit control over a virtual machine's execution. * The ability to suspend and resume threads, and to set breakpoints, * watchpoints, etc. Notification of exceptions, class loading, thread * creation, etc. The ability to inspect a suspended thread's state, local * variables, stack backtrace, etc. * <p> * JDI is the highest-layer of the * <a href="{@docRoot}/../specs/jpda/jpda.html"> * Java Platform Debugger Architecture (JPDA)</a>. * <p> * This module includes a simple command-line debugger, * <em>{@index jdb jdb tool}</em>. * * <h2>Global Exceptions</h2> * <p> * This section documents exceptions which apply to the entire API and are thus * not documented on individual methods. * <blockquote> * <p> * <b>{@link com.sun.jdi.VMMismatchException}</b> * <p> * Any method on a {@link com.sun.jdi.Mirror} that takes a * {@code Mirror} as an parameter directly or indirectly (e.g., as a * element in a {@code List}) will throw {@link * com.sun.jdi.VMMismatchException} if the mirrors are from different virtual * machines. * <p> * <b>{@link java.lang.NullPointerException}</b> * <p> * Any method which takes a {@link java.lang.Object} as an parameter will * throw {@link java.lang.NullPointerException} if null is passed directly or * indirectly -- unless null is explicitly mentioned as a valid parameter. * </blockquote> * NOTE: The exceptions below may be thrown whenever the specified conditions * are met but a guarantee that they are thrown only exists when a valid result * cannot be returned. * <blockquote> * <p> * <b>{@link com.sun.jdi.VMDisconnectedException}</b> * <p> * Any method on {@link com.sun.jdi.ObjectReference}, {@link * com.sun.jdi.ReferenceType}, {@link com.sun.jdi.request.EventRequest}, * {@link com.sun.jdi.StackFrame}, or {@link com.sun.jdi.VirtualMachine} or * which takes one of these directly or indirectly as an parameter may throw * {@link com.sun.jdi.VMDisconnectedException} if the target VM is * disconnected and the {@link com.sun.jdi.event.VMDisconnectEvent} has been * or is available to be read from the {@link com.sun.jdi.event.EventQueue}. * <p> * <b>{@link com.sun.jdi.VMOutOfMemoryException}</b> * <p> * Any method on {@link com.sun.jdi.ObjectReference}, {@link * com.sun.jdi.ReferenceType}, {@link com.sun.jdi.request.EventRequest}, * {@link com.sun.jdi.StackFrame}, or {@link com.sun.jdi.VirtualMachine} or * which takes one of these directly or indirectly as an parameter may throw * {@link com.sun.jdi.VMOutOfMemoryException} if the target VM has run out of * memory. * <p> * <b>{@link com.sun.jdi.ObjectCollectedException}</b> * <p> * Any method on {@link com.sun.jdi.ObjectReference} or which directly or * indirectly takes {@code ObjectReference} as parameter may throw * {@link com.sun.jdi.ObjectCollectedException} if the mirrored object has * been garbage collected. * <p> * Any method on {@link com.sun.jdi.ReferenceType} or which directly or * indirectly takes {@code ReferenceType} as parameter may throw {@link * com.sun.jdi.ObjectCollectedException} if the mirrored type has been * unloaded. * </blockquote> * * * @toolGuide jdb * * @provides com.sun.jdi.connect.Connector * * @uses com.sun.jdi.connect.Connector * @uses com.sun.jdi.connect.spi.TransportService * * @moduleGraph * @since 9 * @see <a href="{@docRoot}/../specs/jpda/jpda.html"> * Java Platform Debugger Architecture (JPDA)</a> */ module jdk.jdi { requires jdk.attach; requires jdk.jdwp.agent; exports com.sun.jdi; exports com.sun.jdi.connect; exports com.sun.jdi.connect.spi; exports com.sun.jdi.event; exports com.sun.jdi.request; uses com.sun.jdi.connect.Connector; uses com.sun.jdi.connect.spi.TransportService; // windows shared memory connector providers are added at build time provides com.sun.jdi.connect.Connector with com.sun.tools.jdi.ProcessAttachingConnector, com.sun.tools.jdi.RawCommandLineLauncher, com.sun.tools.jdi.SocketAttachingConnector, com.sun.tools.jdi.SocketListeningConnector, com.sun.tools.jdi.SunCommandLineLauncher; }
⏎ module-info.java
Or download all of them as a single archive file:
File name: jdk.jdi-17.0.5-src.zip File size: 476972 bytes Release date: 2022-09-13 Download
⇒ JDK 17 jdk.jdwp.agent.jmod - JDWP Agent Module
2023-04-17, 13823👍, 0💬
Popular Posts:
GJT (Giant Java Tree) implementation of XML Pull Parser. JAR File Size and Download Location: File n...
What Is poi-3.5.jar - Part 2? poi-3.5.jar is one of the JAR files for Apache POI 3.5, which provides...
JDK 11 jdk.jlink.jmod is the JMOD file for JDK 11 JLink tool, which can be invoked by the "jlink" co...
What Is HttpComponents httpcore-4.4.6.jar? HttpComponents httpcore-4.4.6.jar is the JAR file for Apa...
JDK 11 jdk.dynalink.jmod is the JMOD file for JDK 11 Dynamic Linking module. JDK 11 Dynamic Linking ...