RRExitEvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 10 Jun 2019 14:59:26 +0100
changeset 165 1e2a4cb4afdd
parent 111 a70313e80780
child 264 23960fcb9dac
permissions -rw-r--r--
plugins/bee: add menu item to disassemble given symbol Also, symbol list is auto-updated each time inferior stops. This may take time and has to be oprimized (later)

"
jv:vdb - Visual / VM Debugger
Copyright (C) 2015-now Jan Vrany

This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'

You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
"
"{ Package: 'jv:vdb' }"

"{ NameSpace: Smalltalk }"

RREvent subclass:#RRExitEvent
	instanceVariableNames:'status'
	classVariableNames:''
	poolDictionaries:''
	category:'RR'
!

!RRExitEvent class methodsFor:'documentation'!

copyright
"
jv:vdb - Visual / VM Debugger
Copyright (C) 2015-now Jan Vrany

This software is licensed under 'Creative Commons Attribution-NonCommercial 4.0 International License'

You may find a full license text in LICENSE.txt or at http://creativecommons.org/licenses/by-nc/4.0/
"
! !

!RRExitEvent methodsFor:'accessing'!

status
    ^ status
! !

!RRExitEvent methodsFor:'initialization'!

setStatus: anObject
    status := anObject

    "Created: / 31-07-2018 / 08:33:06 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!RRExitEvent class methodsFor:'documentation'!

version_HG

    ^ '$Changeset: <not expanded> $'
! !