initial checkin
authorClaus Gittinger <cg@exept.de>
Tue, 21 Mar 2000 13:46:10 +0100
changeset 912 beff816c6f5d
parent 911 cecf421ee767
child 913 0000f1667243
initial checkin
MethodDefinitionChange.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MethodDefinitionChange.st	Tue Mar 21 13:46:10 2000 +0100
@@ -0,0 +1,25 @@
+MethodChange subclass:#MethodDefinitionChange
+	instanceVariableNames:'attributes'
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Changes'
+!
+
+
+!MethodDefinitionChange methodsFor:'accessing'!
+
+attributes
+    "return the value of the instance variable 'attributes' (automatically generated)"
+
+    ^ attributes!
+
+attributes:something
+    "set the value of the instance variable 'attributes' (automatically generated)"
+
+    attributes := something.! !
+
+!MethodDefinitionChange class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libbasic3/MethodDefinitionChange.st,v 1.1 2000-03-21 12:46:10 cg Exp $'
+! !