ClassRenameChange.st
author Claus Gittinger <cg@exept.de>
Mon, 12 Jul 1999 14:06:43 +0200
changeset 798 999fff0aa0d0
parent 653 b873bb41ef10
child 1096 4a949a840bb3
permissions -rw-r--r--
checkin from browser

"
 COPYRIGHT (c) 1998 by eXept Software AG
              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:#ClassRenameChange
	instanceVariableNames:'newName'
	classVariableNames:''
	poolDictionaries:''
	category:'System-Changes'
!

!ClassRenameChange class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1998 by eXept Software AG
              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.
"

! !

!ClassRenameChange methodsFor:'accessing'!

oldName:oldName newName:newNameString
    className := oldName.
    newName := newNameString

    "Created: / 16.2.1998 / 14:22:38 / cg"
! !

!ClassRenameChange methodsFor:'printing'!

printOn:aStream
    aStream nextPutAll:'Smalltalk renameClass:';
            nextPutAll:className storeString;
            nextPutAll:' to:';
            nextPutAll:newName storeString

    "Created: / 16.2.1998 / 14:23:35 / cg"
! !

!ClassRenameChange class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic3/ClassRenameChange.st,v 1.2 1999-07-12 12:06:18 cg Exp $'
! !