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

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 class methodsFor:'documentation'!

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