Collection.st
changeset 326 d2902942491d
parent 316 f35ed7aa7fbe
child 328 7b542c0bf1dd
equal deleted inserted replaced
325:46bca6125b93 326:d2902942491d
    19 
    19 
    20 Collection comment:'
    20 Collection comment:'
    21 COPYRIGHT (c) 1989 by Claus Gittinger
    21 COPYRIGHT (c) 1989 by Claus Gittinger
    22 	      All Rights Reserved
    22 	      All Rights Reserved
    23 
    23 
    24 $Header: /cvs/stx/stx/libbasic/Collection.st,v 1.29 1995-03-25 21:53:57 claus Exp $
    24 $Header: /cvs/stx/stx/libbasic/Collection.st,v 1.30 1995-04-11 14:48:46 claus Exp $
    25 '!
    25 '!
    26 
    26 
    27 !Collection class methodsFor:'documentation'!
    27 !Collection class methodsFor:'documentation'!
    28 
    28 
    29 copyright
    29 copyright
    40 "
    40 "
    41 !
    41 !
    42 
    42 
    43 version
    43 version
    44 "
    44 "
    45 $Header: /cvs/stx/stx/libbasic/Collection.st,v 1.29 1995-03-25 21:53:57 claus Exp $
    45 $Header: /cvs/stx/stx/libbasic/Collection.st,v 1.30 1995-04-11 14:48:46 claus Exp $
    46 "
    46 "
    47 !
    47 !
    48 
    48 
    49 documentation
    49 documentation
    50 "
    50 "
    62 
    62 
    63 initialize
    63 initialize
    64     "setup the signal"
    64     "setup the signal"
    65 
    65 
    66     InvalidKeySignal isNil ifTrue:[
    66     InvalidKeySignal isNil ifTrue:[
    67 	ErrorSignal isNil ifTrue:[super initialize].
       
    68 
       
    69 	InvalidKeySignal := ErrorSignal newSignalMayProceed:true.
    67 	InvalidKeySignal := ErrorSignal newSignalMayProceed:true.
    70 	InvalidKeySignal nameClass:self message:#invalidKeySignal.
    68 	InvalidKeySignal nameClass:self message:#invalidKeySignal.
    71 	InvalidKeySignal notifierString:'invalid key'.
    69 	InvalidKeySignal notifierString:'invalid key'.
    72 
    70 
    73 	EmptyCollectionSignal := ErrorSignal newSignalMayProceed:true.
    71 	EmptyCollectionSignal := ErrorSignal newSignalMayProceed:true.