GDBExecutionEvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 08 Sep 2014 23:56:17 +0100
changeset 38 c9eaa506824b
parent 6 d935bc59f6f4
child 78 c24e7d8bc881
permissions -rw-r--r--
More work on GDBThreadStatus

"{ Package: 'jv:libgdbs' }"

GDBAsyncEvent subclass:#GDBExecutionEvent
	instanceVariableNames:'thread_id threads'
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Events'
!

!GDBExecutionEvent methodsFor:'accessing'!

threads
    ^ threads
! !

!GDBExecutionEvent methodsFor:'initialization'!

setThreads: aCollection
    self assert: threads isNil.
    threads := aCollection

    "Created: / 08-09-2014 / 22:02:40 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!GDBExecutionEvent methodsFor:'testing'!

isExecutionEvent
    ^ true

    "Created: / 01-06-2014 / 23:38:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !