ClassCommentChange.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:#ClassCommentChange
	 instanceVariableNames:'comment'
	 classVariableNames:''
	 poolDictionaries:''
	 category:'System-Changes'
!

!ClassCommentChange 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/ClassCommentChange.st,v 1.10 1995-11-11 15:20:29 cg Exp $'
!

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

!ClassCommentChange methodsFor:'accessing'!

comment
    ^ comment
! !

!ClassCommentChange methodsFor:'printing'!

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