SharedCollection.st
changeset 3860 224a3ad98604
parent 3213 53857e1b18a4
child 4001 70db839403e2
equal deleted inserted replaced
3859:3f598428b3e8 3860:224a3ad98604
     8  be provided or otherwise made available to, or used by, any
     8  be provided or otherwise made available to, or used by, any
     9  other person.  No title to or ownership of the software is
     9  other person.  No title to or ownership of the software is
    10  hereby transferred.
    10  hereby transferred.
    11 "
    11 "
    12 "{ Package: 'stx:libbasic2' }"
    12 "{ Package: 'stx:libbasic2' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 Collection subclass:#SharedCollection
    16 Collection subclass:#SharedCollection
    15 	instanceVariableNames:'accessLock realCollection'
    17 	instanceVariableNames:'accessLock realCollection'
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
   227 ! !
   229 ! !
   228 
   230 
   229 !SharedCollection methodsFor:'queries'!
   231 !SharedCollection methodsFor:'queries'!
   230 
   232 
   231 species
   233 species
   232     "returns non shared collections"
   234     "returns non shared collection's species"
   233 
   235 
   234     ^ realCollection species
   236     ^ realCollection species
   235 ! !
   237 ! !
   236 
   238 
   237 !SharedCollection methodsFor:'testing'!
   239 !SharedCollection methodsFor:'testing'!
   243 ! !
   245 ! !
   244 
   246 
   245 !SharedCollection class methodsFor:'documentation'!
   247 !SharedCollection class methodsFor:'documentation'!
   246 
   248 
   247 version
   249 version
   248     ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.13 2014-03-26 13:48:55 stefan Exp $'
   250     ^ '$Header$'
   249 !
   251 !
   250 
   252 
   251 version_CVS
   253 version_CVS
   252     ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.13 2014-03-26 13:48:55 stefan Exp $'
   254     ^ '$Header$'
   253 ! !
   255 ! !
   254 
   256