ClsDefChg.st
author Claus Gittinger <cg@exept.de>
Sun, 03 Dec 1995 15:37:30 +0100
changeset 100 d09e51d14901
parent 85 c354e2f81394
child 101 9a1c22e807e0
permissions -rw-r--r--
project changeSet fixes

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

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

!ClassDefinitionChange methodsFor:'accessing'!

class:aClass 
    className := aClass name.
    source := aClass definition

    "Created: 3.12.1995 / 14:02:40 / cg"
    "Modified: 3.12.1995 / 14:06:33 / cg"
! !

!ClassDefinitionChange methodsFor:'printing'!

printOn:aStream
    aStream nextPutAll:source asCollectionOfLines first.

    "Created: 3.12.1995 / 14:07:09 / cg"
    "Modified: 3.12.1995 / 14:08:26 / cg"
! !

!ClassDefinitionChange class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic3/Attic/ClsDefChg.st,v 1.12 1995-12-03 14:36:54 cg Exp $'
! !