public interface IVMConnector
A VM connector extension is defined in plugin.xml
.
Following is an example definition of a VM connector extension.
<extension point="org.eclipse.jdt.launching.vmConnectors"> <vmConnector id="com.example.VMConnector" class="com.example.VMConnectorClass" </vmConnector> </extension>The attributes are specified as follows:
id
specifies a unique identifier for this VM connector.class
specifies the fully qualified name of the Java class
that implements IVMConnector
.Modifier and Type | Method and Description |
---|---|
void |
connect(Map<String,String> arguments,
IProgressMonitor monitor,
ILaunch launch)
Establishes a JDI connection with a debuggable VM using the arguments
specified in the given map, contributing results (debug targets and processes),
to the given launch.
|
List<String> |
getArgumentOrder()
Returns a list of argument names found in this connector's
default argument map, defining the order in which arguments
should be presented to the user.
|
Map<String,com.sun.jdi.connect.Connector.Argument> |
getDefaultArguments()
Returns a map of default arguments used by this connector.
|
String |
getIdentifier()
Returns a unique identifier for this kind of connector.
|
String |
getName()
Returns the name of this connector.
|
void connect(Map<String,String> arguments, IProgressMonitor monitor, ILaunch launch) throws CoreException
arguments
- Argument map to use in establishing a connection. The keys of
the map are strings corresponding to the names of arguments returned by this
connector's getDefaultAgruments()
method. The values of the map
are strings corresponding to the (String) values of the associated
com.sun.jdi.connect.Connector.Argument
s to use.monitor
- progress monitorlaunch
- launch to contribute debug target(s) and/or process(es) toCoreException
- if unable to establish a connection with the target VMString getName()
String getIdentifier()
Map<String,com.sun.jdi.connect.Connector.Argument> getDefaultArguments() throws CoreException
com.sun.jdi.connect.Connector.Argument
.CoreException
- if unable to retrieve a default argument mapList<String> getArgumentOrder()
Copyright (c) 2000, 2015 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.