aesi-eclipse / com.virtlink.aesi.debugging
Package com.virtlink.aesi.debugging
Types
| AbstractDebugger | abstract class AbstractDebugger : IDebuggerAbstract base class for debuggers. The debugger must call the [`#fireThreadCreated`](#) and#fireThreadDestroyed methods for any threads that are created or destroyed after the debugger has been attached and before the debugger has been detached. Then, for each thread created, the debugger must call either the [`#fireThreadResumed`](#) or the#fireThreadSuspended methods to indicate the running state of the thread. |
| AbstractSyncDebugger | abstract class AbstractSyncDebugger : AbstractAsyncDebuggerExecutes synchronous actions asynchronously. |
| IAttachOptions | interface IAttachOptionsOptions for attaching to a program. |
| IDebugSession | interface IDebugSessionA debug session. |
| IDebuggerCapabilities | interface IDebuggerCapabilitiesSpecifies the capabilities of the debugger. |
| IEvaluator | interface IEvaluatorEvaluates expressions. |
| IProcess | interface IProcessCreated by daniel on 6/29/17. |
| IValue | interface IValueA value. |
| ThreadState | class ThreadStateSpecifies the state of a thread. |