java.lang.Object
javax.ide.debug.Connector
javax.ide.debug.ClientConnector
- public abstract class ClientConnector
- extends Connector
ClientConnectors expect extension writers to start the debuggee process
by calling Connector.startDebuggee(java.util.Map) 55 . Once the debuggee is launched,
the extension writer can attach the debugger to the debugge by calling
attachDebugger() 55 .
IDE providers must provide an implementation of this interface. Extension
writers can access the Connector through the
Debugger.getClientConnector(javax.ide.command.Context) 55 method.
|
Method Summary |
abstract void |
attachDebugger()
Tells the debugger to attach to a debuggee process. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ClientConnector
public ClientConnector()
attachDebugger
public abstract void attachDebugger()
throws java.io.IOException
- Tells the debugger to attach to a debuggee process.
Before calling this method, the extension should either start the
debuggee process or tell the IDE to do so by calling
Connector.startDebuggee(java.util.Map) 55 .