MethodRemoveChangeNotificationParameter.st
changeset 2267 8f2ea2e840da
child 3011 1997ff6e7e55
child 3441 ca234a71a5cb
equal deleted inserted replaced
2266:75abf5b4c643 2267:8f2ea2e840da
       
     1 "{ Package: 'stx:libbasic3' }"
       
     2 
       
     3 MethodChangeNotificationParameter variableSubclass:#MethodRemoveChangeNotificationParameter
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'System-Changes-Notifications'
       
     8 !
       
     9 
       
    10 
       
    11 !MethodRemoveChangeNotificationParameter methodsFor:'accessing'!
       
    12 
       
    13 changeClass:changeClassArg changeSelector:changeSelectorArg
       
    14     self at:1 put:changeClassArg.
       
    15     self at:2 put:changeSelectorArg.
       
    16 !
       
    17 
       
    18 changeSelector
       
    19     ^ self at:2
       
    20 ! !
       
    21 
       
    22 !MethodRemoveChangeNotificationParameter class methodsFor:'documentation'!
       
    23 
       
    24 version_CVS
       
    25     ^ '$Header: /cvs/stx/stx/libbasic3/MethodRemoveChangeNotificationParameter.st,v 1.1 2010-04-19 13:27:15 cg Exp $'
       
    26 ! !