*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Fri, 29 Aug 2003 21:21:52 +0200
changeset 1450 8c466a8a125a
parent 1449 612489f03d26
child 1451 44ef4c3ba214
*** empty log message ***
LazyMethod.st
Reference.st
--- a/LazyMethod.st	Fri Aug 29 20:28:24 2003 +0200
+++ b/LazyMethod.st	Fri Aug 29 21:21:52 2003 +0200
@@ -222,6 +222,7 @@
 !LazyMethod class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libcomp/LazyMethod.st,v 1.32 2000-11-21 23:33:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libcomp/LazyMethod.st,v 1.33 2003-08-29 19:21:19 cg Exp $'
 ! !
+
 LazyMethod initialize!
--- a/Reference.st	Fri Aug 29 20:28:24 2003 +0200
+++ b/Reference.st	Fri Aug 29 21:21:52 2003 +0200
@@ -1,3 +1,15 @@
+"
+ COPYRIGHT (c) 2003 by eXept Software AG
+              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.
+"
+
 "{ Package: 'stx:libcomp' }"
 
 Object variableSubclass:#Reference
@@ -30,6 +42,20 @@
 
 !Reference class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2003 by eXept Software AG
+              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.
+"
+!
+
 example1
     |foo ref|
 
@@ -93,3 +119,8 @@
     ^ context varAt:index put:newValue
 ! !
 
+!Reference class methodsFor:'documentation'!
+
+version
+    ^ '$Header: /cvs/stx/stx/libcomp/Reference.st,v 1.3 2003-08-29 19:21:52 cg Exp $'
+! !