Change.st
author claus
Fri, 05 Aug 1994 03:07:58 +0200
changeset 10 676ce0471de4
parent 9 f5b6ab00bdf6
child 38 30fdc5e331f7
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.
"

Object subclass:#Change
	 instanceVariableNames:'source'
	 classVariableNames:''
	 poolDictionaries:''
	 category:'System-Changes'
!

Change comment:'
COPYRIGHT (c) 1993 by Claus Gittinger
              All Rights Reserved

$Header: /cvs/stx/stx/libbasic3/Change.st,v 1.5 1994-08-05 01:06:42 claus Exp $
'!

!Change 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/Change.st,v 1.5 1994-08-05 01:06:42 claus Exp $
"
!

documentation
"
    abstract superclass for all kind of changes - managed in changeSets.
"
! !

!Change methodsFor:'source'!

source
    ^ source
! !