RREvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 30 Jan 2019 11:45:37 +0000
changeset 147 4087090b3581
parent 83 101ff2210613
child 264 23960fcb9dac
permissions -rw-r--r--
UX: automatically refresh memory contents when inferior stops ...so memory contents is up-to-date.

"
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 }"

Announcement subclass:#RREvent
	instanceVariableNames:'rr'
	classVariableNames:''
	poolDictionaries:''
	category:'RR'
!

!RREvent 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/
"
! !

!RREvent methodsFor:'accessing'!

rr
    ^ rr
! !

!RREvent methodsFor:'initialization'!

setRR: aRR
    rr := aRR

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