GDBSelectedFrameChangedEvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 08 Sep 2014 10:02:31 +0100
changeset 37 a85f0c91f164
child 78 c24e7d8bc881
permissions -rw-r--r--
Some more work on threads (thread status)

"{ Package: 'jv:libgdbs' }"

GDBInternalEvent subclass:#GDBSelectedFrameChangedEvent
	instanceVariableNames:'frame'
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Events'
!

!GDBSelectedFrameChangedEvent methodsFor:'initialization'!

setFrame: aGDBFrame
    self assert: aGDBFrame isNil.
    frame := aGDBFrame

    "Created: / 07-09-2014 / 23:12:58 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !