copyright
authorClaus Gittinger <cg@exept.de>
Tue, 22 Jan 2008 23:31:57 +0100
changeset 1927 d1ba381a17ae
parent 1926 b7740748e15c
child 1928 32553a766637
copyright
Singleton.st
--- a/Singleton.st	Tue Jan 22 23:31:54 2008 +0100
+++ b/Singleton.st	Tue Jan 22 23:31:57 2008 +0100
@@ -1,3 +1,14 @@
+"
+ COPYRIGHT (c) 2006 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:libbasic2' }"
 
 Object subclass:#Singleton
@@ -16,6 +27,20 @@
 
 !Singleton class methodsFor:'documentation'!
 
+copyright
+"
+ COPYRIGHT (c) 2006 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.
+"
+!
+
 documentation
 "
     Subclasses of Singleton have only a single instance.
@@ -87,7 +112,7 @@
 !Singleton class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Singleton.st,v 1.2 2006-06-29 08:20:52 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Singleton.st,v 1.3 2008-01-22 22:31:57 cg Exp $'
 ! !
 
 Singleton initialize!