diff -r c48d33e27d34 -r 76ac209277a7 GDBCommandResult.st --- a/GDBCommandResult.st Thu Jun 19 22:27:00 2014 +0100 +++ b/GDBCommandResult.st Fri Jun 20 09:26:41 2014 +0100 @@ -26,6 +26,28 @@ status := something. ! ! +!GDBCommandResult methodsFor:'accessing-properties'! + +properties + ^ GDBObject getPropertiesOf: self. + + "Modified: / 20-06-2014 / 09:04:23 / Jan Vrany " +! + +propertyAt: name + ^ GDBObject getProperty: name of: self + + "Created: / 31-05-2014 / 00:00:33 / Jan Vrany " + "Modified: / 20-06-2014 / 09:05:05 / Jan Vrany " +! + +propertyAt: name put: value + ^ GDBObject setProperty: name of: self to: value + + "Created: / 31-05-2014 / 00:01:10 / Jan Vrany " + "Modified: / 20-06-2014 / 09:05:34 / Jan Vrany " +! ! + !GDBCommandResult class methodsFor:'documentation'! version_HG