View on GitHub

Aesi adapter for IntelliJ

An Aesi adapter for IntelliJ.

Download this project as a .zip file Download this project as a tar.gz file

aesi-eclipse / com.virtlink.aesi.eclipse.debugging.model / AbstractDebugThread

AbstractDebugThread

abstract class AbstractDebugThread : DebugElement, IThread

Abstract base class for debug thread implementations.

Functions

canResume open fun canResume(): Boolean
{@inheritDoc}
canStepInto open fun canStepInto(): Boolean
{@inheritDoc}
canStepOver open fun canStepOver(): Boolean
{@inheritDoc}
canStepReturn open fun canStepReturn(): Boolean
{@inheritDoc}
canSuspend open fun canSuspend(): Boolean
{@inheritDoc}
canTerminate open fun canTerminate(): Boolean
{@inheritDoc}
getBreakpoints abstract fun getBreakpoints(): Array<IBreakpoint>
{@inheritDoc}
getModelIdentifier open fun getModelIdentifier(): String
{@inheritDoc}
getName abstract fun getName(): String
{@inheritDoc}
getPriority open fun getPriority(): Int
{@inheritDoc}
getStackFrames abstract fun getStackFrames(): Array<IStackFrame>
{@inheritDoc}
getTopStackFrame open fun getTopStackFrame(): IStackFrame?
{@inheritDoc}
hasStackFrames open fun hasStackFrames(): Boolean
{@inheritDoc}
isStepping abstract fun isStepping(): Boolean
{@inheritDoc}
isSuspended abstract fun isSuspended(): Boolean
{@inheritDoc}
isTerminated abstract fun isTerminated(): Boolean
{@inheritDoc}
resume abstract fun resume(): Unit
{@inheritDoc}
stepInto abstract fun stepInto(): Unit
{@inheritDoc}
stepOver abstract fun stepOver(): Unit
{@inheritDoc}
stepReturn abstract fun stepReturn(): Unit
{@inheritDoc}
suspend abstract fun suspend(): Unit
{@inheritDoc}
terminate abstract fun terminate(): Unit
{@inheritDoc}