GDBCommand.st
changeset 7 7a51f98e7162
parent 6 d935bc59f6f4
child 11 474fbb650afe
equal deleted inserted replaced
6:d935bc59f6f4 7:7a51f98e7162
     1 "{ Package: 'jv:libgdbs' }"
     1 "{ Package: 'jv:libgdbs' }"
     2 
     2 
     3 Object subclass:#GDBCommand
     3 Object subclass:#GDBCommand
     4 	instanceVariableNames:''
     4 	instanceVariableNames:'token'
     5 	classVariableNames:''
     5 	classVariableNames:''
     6 	poolDictionaries:''
     6 	poolDictionaries:''
     7 	category:'GDB-Core-Commands'
     7 	category:'GDB-Core-Commands'
     8 !
     8 !
     9 
     9 
       
    10 !GDBCommand methodsFor:'accessing'!
       
    11 
       
    12 token
       
    13     ^ token
       
    14 !
       
    15 
       
    16 token:anInteger
       
    17     token := anInteger.
       
    18 ! !
       
    19 
       
    20 !GDBCommand methodsFor:'converting'!
       
    21 
       
    22 asString
       
    23     ^ self subclassResponsibility
       
    24 
       
    25     "Created: / 02-06-2014 / 23:34:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
       
    26 ! !
       
    27