GDBEventSetEvent.st
changeset 42 499dc5d38707
child 78 c24e7d8bc881
equal deleted inserted replaced
41:fb48207b6104 42:499dc5d38707
       
     1 "{ Package: 'jv:libgdbs' }"
       
     2 
       
     3 GDBInternalEvent subclass:#GDBEventSetEvent
       
     4 	instanceVariableNames:'eventSet'
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'GDB-Core-Events'
       
     8 !
       
     9 
       
    10 !GDBEventSetEvent class methodsFor:'queries'!
       
    11 
       
    12 isAbstract
       
    13     "Return if this class is an abstract class.
       
    14      True is returned here for myself only; false for subclasses.
       
    15      Abstract subclasses must redefine again."
       
    16 
       
    17     ^ self == GDBEventSetEvent.
       
    18 ! !
       
    19 
       
    20 !GDBEventSetEvent methodsFor:'initialization'!
       
    21 
       
    22 setEventSet: aGDBEventSet
       
    23     eventSet := aGDBEventSet
       
    24 
       
    25     "Created: / 18-09-2014 / 22:41:48 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    26 ! !
       
    27