# HG changeset patch # User Claus Gittinger # Date 1465007129 -7200 # Node ID 224a3ad986040be0398fa1e021fb571106f3e134 # Parent 3f598428b3e89bf0b69b8fe8d9e7a4356fd7f410 #DOCUMENTATION by cg class: SharedCollection comment/format in: #species diff -r 3f598428b3e8 -r 224a3ad98604 SharedCollection.st --- a/SharedCollection.st Sat Jun 04 04:25:15 2016 +0200 +++ b/SharedCollection.st Sat Jun 04 04:25:29 2016 +0200 @@ -11,6 +11,8 @@ " "{ Package: 'stx:libbasic2' }" +"{ NameSpace: Smalltalk }" + Collection subclass:#SharedCollection instanceVariableNames:'accessLock realCollection' classVariableNames:'' @@ -229,7 +231,7 @@ !SharedCollection methodsFor:'queries'! species - "returns non shared collections" + "returns non shared collection's species" ^ realCollection species ! ! @@ -245,10 +247,10 @@ !SharedCollection class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.13 2014-03-26 13:48:55 stefan Exp $' + ^ '$Header$' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.13 2014-03-26 13:48:55 stefan Exp $' + ^ '$Header$' ! !