MethodTrapChangeNotificationParameter.st
changeset 2269 e9aa6c359c8e
child 3011 1997ff6e7e55
child 3311 65cd21a0ffbc
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MethodTrapChangeNotificationParameter.st	Mon Apr 19 15:27:41 2010 +0200
@@ -0,0 +1,26 @@
+"{ Package: 'stx:libbasic3' }"
+
+MethodChangeNotificationParameter variableSubclass:#MethodTrapChangeNotificationParameter
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'System-Changes-Notifications'
+!
+
+
+!MethodTrapChangeNotificationParameter methodsFor:'accessing'!
+
+changeClass:changeClassArg changeSelector:changeSelectorArg
+    self at:1 put:changeClassArg.
+    self at:2 put:changeSelectorArg.
+!
+
+changeSelector
+    ^ self at:2
+! !
+
+!MethodTrapChangeNotificationParameter class methodsFor:'documentation'!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libbasic3/MethodTrapChangeNotificationParameter.st,v 1.1 2010-04-19 13:27:41 cg Exp $'
+! !