MethodRemoveChange.st
changeset 1894 4b91039e6bbb
parent 1219 7b0018019610
child 2025 bbf07cb89d9a
equal deleted inserted replaced
1893:740930d87917 1894:4b91039e6bbb
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 
       
    13 
       
    14 "{ Package: 'stx:libbasic3' }"
    12 "{ Package: 'stx:libbasic3' }"
    15 
    13 
    16 MethodChange subclass:#MethodRemoveChange
    14 MethodChange subclass:#MethodRemoveChange
    17 	instanceVariableNames:''
    15 	instanceVariableNames:''
    18 	classVariableNames:''
    16 	classVariableNames:''
    51 
    49 
    52 class:cls selector:selector 
    50 class:cls selector:selector 
    53     ^ self basicNew class:cls selector:selector
    51     ^ self basicNew class:cls selector:selector
    54 
    52 
    55     "Created: / 17.4.1998 / 17:10:51 / cg"
    53     "Created: / 17.4.1998 / 17:10:51 / cg"
       
    54 !
       
    55 
       
    56 className:clsName selector:sel
       
    57     ^ self basicNew className:clsName selector:sel
       
    58 
       
    59     "Created: / 10-11-2006 / 14:24:14 / cg"
    56 ! !
    60 ! !
    57 
    61 
    58 !MethodRemoveChange methodsFor:'accessing'!
    62 !MethodRemoveChange methodsFor:'accessing'!
    59 
    63 
    60 class:cls selector:sel
    64 class:cls selector:sel
    99 ! !
   103 ! !
   100 
   104 
   101 !MethodRemoveChange class methodsFor:'documentation'!
   105 !MethodRemoveChange class methodsFor:'documentation'!
   102 
   106 
   103 version
   107 version
   104     ^ '$Header: /cvs/stx/stx/libbasic3/MethodRemoveChange.st,v 1.7 2003-03-25 13:39:45 james Exp $'
   108     ^ '$Header: /cvs/stx/stx/libbasic3/MethodRemoveChange.st,v 1.8 2006-11-10 13:26:17 cg Exp $'
   105 ! !
   109 ! !