ClassPrimitiveVariablesChange.st
author Claus Gittinger <cg@exept.de>
Sun, 03 Dec 1995 19:20:18 +0100
changeset 103 487c1447b3d8
parent 101 9a1c22e807e0
child 235 3ebfdc6edab9
permissions -rw-r--r--
printing fixed (req'd for changeSetBrowser)

"
 COPYRIGHT (c) 1995 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:#ClassPrimitiveVariablesChange
	 instanceVariableNames:''
	 classVariableNames:''
	 poolDictionaries:''
	 category:'System-Changes'
!

!ClassPrimitiveVariablesChange class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1995 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 a classes primitive variables-changes. 
    They are typically held in a ChangeSet.
"
! !

!ClassPrimitiveVariablesChange methodsFor:'accessing'!

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

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

!ClassPrimitiveVariablesChange methodsFor:'printing'!

printOn:aStream
    aStream nextPutAll:className; nextPutAll:' primitiveVariables:'
! !

!ClassPrimitiveVariablesChange class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic3/ClassPrimitiveVariablesChange.st,v 1.2 1995-12-03 18:20:18 cg Exp $'
! !