GDBCommandResultEvent.st
changeset 6 d935bc59f6f4
parent 3 29ea333a1811
child 9 5cc8797f6523
equal deleted inserted replaced
5:5cdb702e1bec 6:d935bc59f6f4
       
     1 "{ Package: 'jv:libgdbs' }"
       
     2 
       
     3 GDBEvent subclass:#GDBCommandResultEvent
       
     4 	instanceVariableNames:'result'
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'GDB-Core-Events'
       
     8 !
       
     9 
       
    10 !GDBCommandResultEvent methodsFor:'accessing'!
       
    11 
       
    12 result
       
    13     ^ result
       
    14 !
       
    15 
       
    16 result:something
       
    17     result := something.
       
    18 ! !
       
    19 
       
    20 !GDBCommandResultEvent methodsFor:'testing'!
       
    21 
       
    22 isCommandResultEvent
       
    23     ^ true
       
    24 ! !
       
    25