ClassDefinitionChange.st
author claus
Thu, 10 Aug 1995 15:20:12 +0200
changeset 38 30fdc5e331f7
parent 10 676ce0471de4
child 39 e36b38a77856
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.
"

ClassChange subclass:#ClassDefinitionChange
	 instanceVariableNames:'definition'
	 classVariableNames:''
	 poolDictionaries:''
	 category:'System-Changes'
!

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

$Header: /cvs/stx/stx/libbasic3/ClassDefinitionChange.st,v 1.7 1995-08-10 13:19:45 claus Exp $
'!

!ClassDefinitionChange 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/ClassDefinitionChange.st,v 1.7 1995-08-10 13:19:45 claus Exp $
$Revision: 1.7 $
"
!

documentation
"
    instances represent clas definition-changes
"
! !

!ClassDefinitionChange methodsFor:'printing'!

printOn:aStream
    aStream nextPutAll:'ClassDefinitionChange(';
	    nextPutAll:className;
	    nextPutAll:')'
! !