KeyedCollection.st
branchjv
changeset 19478 1f5aa87f6170
parent 18120 e3a375d5f6a8
parent 19469 e43475084bb5
child 19863 513bd7237fe7
equal deleted inserted replaced
19477:af82888ceb72 19478:1f5aa87f6170
     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:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
    13 
    15 
    14 Collection subclass:#KeyedCollection
    16 Collection subclass:#KeyedCollection
    15 	instanceVariableNames:''
    17 	instanceVariableNames:''
    16 	classVariableNames:''
    18 	classVariableNames:''
    17 	poolDictionaries:''
    19 	poolDictionaries:''
    58 !KeyedCollection class methodsFor:'queries'!
    60 !KeyedCollection class methodsFor:'queries'!
    59 
    61 
    60 isAbstract
    62 isAbstract
    61     "Return if this class is an abstract class.
    63     "Return if this class is an abstract class.
    62      True is returned for KeyedCollection here; false for subclasses.
    64      True is returned for KeyedCollection here; false for subclasses.
    63      Abstract subclasses must redefine again."
    65      Abstract subclasses must redefine this again."
    64 
    66 
    65     ^ self == KeyedCollection
    67     ^ self == KeyedCollection
    66 ! !
    68 ! !
    67 
    69 
    68 !KeyedCollection methodsFor:'accessing'!
    70 !KeyedCollection methodsFor:'accessing'!
   197 ! !
   199 ! !
   198 
   200 
   199 !KeyedCollection class methodsFor:'documentation'!
   201 !KeyedCollection class methodsFor:'documentation'!
   200 
   202 
   201 version
   203 version
   202     ^ '$Header: /cvs/stx/stx/libbasic/KeyedCollection.st,v 1.9 2014-11-26 08:39:20 cg Exp $'
   204     ^ '$Header$'
   203 !
   205 !
   204 
   206 
   205 version_CVS
   207 version_CVS
   206     ^ '$Header: /cvs/stx/stx/libbasic/KeyedCollection.st,v 1.9 2014-11-26 08:39:20 cg Exp $'
   208     ^ '$Header$'
   207 ! !
   209 ! !
   208 
   210