GDBEventSetEvent.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 18 Sep 2014 23:09:57 +0100
changeset 42 499dc5d38707
child 78 c24e7d8bc881
permissions -rw-r--r--
Introduced GDBEventSetProcessingStarted/Finished synthetic events. This may be used by user application to defer some actions / update after a bunch of events once state of the program stabilizes.

"{ Package: 'jv:libgdbs' }"

GDBInternalEvent subclass:#GDBEventSetEvent
	instanceVariableNames:'eventSet'
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Events'
!

!GDBEventSetEvent class methodsFor:'queries'!

isAbstract
    "Return if this class is an abstract class.
     True is returned here for myself only; false for subclasses.
     Abstract subclasses must redefine again."

    ^ self == GDBEventSetEvent.
! !

!GDBEventSetEvent methodsFor:'initialization'!

setEventSet: aGDBEventSet
    eventSet := aGDBEventSet

    "Created: / 18-09-2014 / 22:41:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !