MethodChg.st
author claus
Fri, 05 Aug 1994 03:07:58 +0200
changeset 10 676ce0471de4
parent 7 1ec2a2047025
child 25 e672a78c4cd3
permissions -rw-r--r--
*** empty log message ***

"
 COPYRIGHT (c) 1993 by Claus Gittinger
               All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"

ClassChange subclass:#MethodChange
         instanceVariableNames:'selector'
         classVariableNames:''
         poolDictionaries:''
         category:'System-Changes'
!

MethodChange comment:'
COPYRIGHT (c) 1993 by Claus Gittinger
              All Rights Reserved

$Header: /cvs/stx/stx/libbasic3/Attic/MethodChg.st,v 1.5 1994-08-05 01:06:58 claus Exp $
'!

!MethodChange class methodsFor:'instance creation'!

class:cls selector:sel source:src
    ^ self basicNew class:cls selector:sel source:src
! !

!MethodChange methodsFor:'accessing'!

class:cls selector:sel source:src
    className := cls name.
    selector := sel.
    source := src
! !

!MethodChange methodsFor:'printing'!

printOn:aStream
    aStream nextPutAll:className; 
                 space; 
            nextPutAll:selector 
! !