GDBCLICommand.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Mon, 02 Jun 2014 23:56:27 +0100
changeset 7 7a51f98e7162
child 11 474fbb650afe
permissions -rw-r--r--
Initial implementation of event dispatcher and event pump.

"{ Package: 'jv:libgdbs' }"

GDBCommand subclass:#GDBCLICommand
	instanceVariableNames:'value'
	classVariableNames:''
	poolDictionaries:''
	category:'GDB-Core-Commands'
!

!GDBCLICommand methodsFor:'accessing'!

value
    ^ value
!

value:aString
    value := aString.
! !

!GDBCLICommand methodsFor:'converting'!

asString
    "superclass GDBCommand says that I am responsible to implement this method"

    ^ self value

    "Created: / 02-06-2014 / 23:34:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !