initial checkin
authorClaus Gittinger <cg@exept.de>
Mon, 19 Apr 2010 15:27:28 +0200
changeset 2268 04589c78a218
parent 2267 8f2ea2e840da
child 2269 e9aa6c359c8e
initial checkin
MethodCategoryChangeNotificationParameter.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MethodCategoryChangeNotificationParameter.st	Mon Apr 19 15:27:28 2010 +0200
@@ -0,0 +1,34 @@
+"{ Package: 'stx:libbasic3' }"
+
+MethodChangeNotificationParameter variableSubclass:#MethodCategoryChangeNotificationParameter
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Changes-Notifications'
+!
+
+
+!MethodCategoryChangeNotificationParameter class methodsFor:'instance creation'!
+
+changeClass:changeClassArg changeMethod:changeMethodArg oldCategory:oldCategoryArg
+    ^ (self new:3)
+        changeClass:changeClassArg changeMethod:changeMethodArg oldCategory:oldCategoryArg
+! !
+
+!MethodCategoryChangeNotificationParameter methodsFor:'accessing'!
+
+changeClass:changeClassArg changeMethod:changeMethodArg oldCategory:oldCategoryArg
+    self at:1 put:changeClassArg.
+    self at:2 put:changeMethodArg.
+    self at:3 put:oldCategoryArg.
+!
+
+oldCategory
+    ^ self at:3
+! !
+
+!MethodCategoryChangeNotificationParameter class methodsFor:'documentation'!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libbasic3/MethodCategoryChangeNotificationParameter.st,v 1.1 2010-04-19 13:27:28 cg Exp $'
+! !