MethodCategoryChange.st
author claus
Sun, 02 Apr 1995 13:08:37 +0200
changeset 25 e672a78c4cd3
parent 15 639ae882da27
child 38 30fdc5e331f7
permissions -rw-r--r--
.

"
 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.
"

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

!MethodCategoryChange class methodsFor:'documentation'!

copyright
"
 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.
"
!

version
"
$Header: /cvs/stx/stx/libbasic3/MethodCategoryChange.st,v 1.2 1995-04-02 11:08:37 claus Exp $
"
! !

!MethodCategoryChange class methodsFor:'instance creation'!

class:cls selector:sel category:cat 
    ^ self basicNew class:cls selector:sel category:cat


! !

!MethodCategoryChange methodsFor:'accessing'!

source
    ^ '(' , className , ' compiledMethodAt:#' , selector , ') category:' , category storeString

!

class:cls selector:sel category:cat
    className := cls name.
    selector := sel.
    category := cat

! !