ClassCommentChange.st
author claus
Thu, 02 Jun 1994 19:20:20 +0200
changeset 9 f5b6ab00bdf6
parent 6 2f5dd35ff019
child 10 676ce0471de4
permissions -rw-r--r--
*** empty log message ***

"
 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.5 1994-06-02 17:19:36 claus Exp $
"
!

documentation
"
    instances represent comment-changes
"
! !

!ClassCommentChange methodsFor:'accessing'!

comment
    ^ comment
! !

!ClassCommentChange methodsFor:'printing'!

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