# HG changeset patch # User Claus Gittinger # Date 1201041117 -3600 # Node ID d1ba381a17ae6c13c04facf710833a1cd1f140c5 # Parent b7740748e15cf1375c3a2837138d145d0ba723b7 copyright diff -r b7740748e15c -r d1ba381a17ae 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!