Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
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 (322)
Collections:
Other Resources:
JDK 11 jdk.jdi.jmod - JDI Tool
JDK 11 jdk.jdi.jmod is the JMOD file for JDK 11 JDI (Java Debug Interface) tool.
JDK 11 JDI tool compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.jdi.jmod.
JDK 11 JDI tool compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 JDI tool source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.jdi.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/tools/jdi/GenericAttachingConnector.java
/*
* Copyright (c) 2003, 2011, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package com.sun.tools.jdi;
import java.io.IOException;
import java.util.Map;
import com.sun.jdi.Bootstrap;
import com.sun.jdi.VirtualMachine;
import com.sun.jdi.connect.AttachingConnector;
import com.sun.jdi.connect.Connector;
import com.sun.jdi.connect.IllegalConnectorArgumentsException;
import com.sun.jdi.connect.Transport;
import com.sun.jdi.connect.spi.Connection;
import com.sun.jdi.connect.spi.TransportService;
/*
* An AttachingConnector to attach to a running VM using any
* TransportService.
*/
public class GenericAttachingConnector
extends ConnectorImpl implements AttachingConnector
{
/*
* The arguments that this connector supports
*/
static final String ARG_ADDRESS = "address";
static final String ARG_TIMEOUT = "timeout";
TransportService transportService;
Transport transport;
/*
* Initialize a new instance of this connector. The connector
* encapsulates a transport service and optionally has an
* "address" connector argument.
*/
private GenericAttachingConnector(TransportService ts,
boolean addAddressArgument)
{
transportService = ts;
transport = new Transport() {
public String name() {
// delegate name to the transport service
return transportService.name();
}
};
if (addAddressArgument) {
addStringArgument(
ARG_ADDRESS,
getString("generic_attaching.address.label"),
getString("generic_attaching.address"),
"",
true);
}
addIntegerArgument(
ARG_TIMEOUT,
getString("generic_attaching.timeout.label"),
getString("generic_attaching.timeout"),
"",
false,
0, Integer.MAX_VALUE);
}
/**
* Initializes a new instance of this connector. This constructor
* is used when sub-classing - the resulting connector will have
* a "timeout" connector argument.
*/
protected GenericAttachingConnector(TransportService ts) {
this(ts, false);
}
/*
* Create an instance of this connector. The resulting AttachingConnector
* will have address and timeout connector arguments.
*/
public static GenericAttachingConnector create(TransportService ts) {
return new GenericAttachingConnector(ts, true);
}
/**
* Attach to a target VM using the specified address and Connector arguments.
*/
public VirtualMachine attach(String address, Map<String, ? extends Connector.Argument> args)
throws IOException, IllegalConnectorArgumentsException
{
String ts = argument(ARG_TIMEOUT, args).value();
int timeout = 0;
if (ts.length() > 0) {
timeout = Integer.decode(ts).intValue();
}
Connection connection = transportService.attach(address, timeout, 0);
return Bootstrap.virtualMachineManager().createVirtualMachine(connection);
}
/**
* Attach to a target VM using the specified arguments - the address
* of the target VM is specified by the <code>address</code> connector
* argument.
*/
public VirtualMachine attach(Map<String, ? extends Connector.Argument> args)
throws IOException, IllegalConnectorArgumentsException
{
String address = argument(ARG_ADDRESS, args).value();
return attach(address, args);
}
public String name() {
return transport.name() + "Attach";
}
public String description() {
return transportService.description();
}
public Transport transport() {
return transport;
}
}
⏎ com/sun/tools/jdi/GenericAttachingConnector.java
Or download all of them as a single archive file:
File name: jdk.jdi-11.0.1-src.zip File size: 464844 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.jdwp.agent.jmod - JDWP Agent Module
2020-07-07, ≈125🔥, 0💬
Popular Posts:
What Is log4j-1.2.15.jar? I got the JAR file from apache-log4j-1.2.15.zip. log4j-1.2.15.jar is the v...
commons-lang-2.6.jar is the JAR file for Apache Commons Lang 2.6, which provides a host of helper ut...
JDK 11 jdk.dynalink.jmod is the JMOD file for JDK 11 Dynamic Linking module. JDK 11 Dynamic Linking ...
What Is javax.websocket-api-1.1. jar?javax.websocket-api-1.1. jaris the JAR file for Java API for We...
JUnit Source Code Files are provided in the source package file, junit-4.13.2-sources.jar .You can b...