ClassChange.st
author Claus Gittinger <cg@exept.de>
Sun, 03 Dec 1995 18:25:09 +0100
changeset 101 9a1c22e807e0
parent 100 d09e51d14901
child 235 3ebfdc6edab9
permissions -rw-r--r--
more changeSet stuff

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

Change subclass:#ClassChange
	 instanceVariableNames:'className'
	 classVariableNames:''
	 poolDictionaries:''
	 category:'System-Changes'
!

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

documentation
"
    Abstract superclass for class related changes
"
! !

!ClassChange class methodsFor:'instance creation'!

class:aClass
    ^ self new class:aClass

    "Created: 3.12.1995 / 14:01:32 / cg"
! !

!ClassChange methodsFor:'accessing'!

class:aClass
    className := aClass name.

    "Created: 3.12.1995 / 14:01:45 / cg"
!

className 
    ^  className
! !

!ClassChange methodsFor:'printing'!

printOn:aStream
    aStream nextPutAll:source asCollectionOfLines first.
! !

!ClassChange class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic3/ClassChange.st,v 1.12 1995-12-03 17:25:06 cg Exp $'
! !