ClassDefinitionChange.st
author Claus Gittinger <cg@exept.de>
Sat, 11 Nov 1995 16:20:50 +0100
changeset 68 5f7ac0b5c903
parent 45 0a58b03645a6
child 85 c354e2f81394
permissions -rw-r--r--
uff - version methods changed to return stings

"
 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 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.10 1995-11-11 15:20:30 cg Exp $'
!

documentation
"
    instances represent class definition-changes. They are typically
    held in a ChangeSet.
"
! !

!ClassDefinitionChange methodsFor:'printing'!

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