HandleRegistry.st
changeset 6442 541e6035e979
parent 1961 7fb6e9d2abea
child 17711 39faaaf888b4
child 20042 55d13d6f3ca0
equal deleted inserted replaced
6441:2be4aa0d2991 6442:541e6035e979
     7  inclusion of the above copyright notice.   This software may not
     7  inclusion of the above copyright notice.   This software may not
     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 
       
    13 "{ Package: 'stx:libbasic' }"
    12 
    14 
    13 Registry subclass:#HandleRegistry
    15 Registry subclass:#HandleRegistry
    14 	instanceVariableNames:''
    16 	instanceVariableNames:''
    15 	classVariableNames:''
    17 	classVariableNames:''
    16 	poolDictionaries:''
    18 	poolDictionaries:''
    49 !HandleRegistry methodsFor:'dispose handling'!
    51 !HandleRegistry methodsFor:'dispose handling'!
    50 
    52 
    51 informDispose:someHandle
    53 informDispose:someHandle
    52     "an element was disposed; let my dependents know about this"
    54     "an element was disposed; let my dependents know about this"
    53 
    55 
    54     self changed:#finalize with:someHandle from:self
    56     self changed:#finalize with:someHandle
    55 
       
    56     "Modified: 11.11.1996 / 12:35:27 / cg"
       
    57 ! !
    57 ! !
    58 
    58 
    59 !HandleRegistry methodsFor:'redefined to block'!
    59 !HandleRegistry methodsFor:'redefined to block'!
    60 
    60 
    61 register:anObject
    61 register:anObject
    71 ! !
    71 ! !
    72 
    72 
    73 !HandleRegistry class methodsFor:'documentation'!
    73 !HandleRegistry class methodsFor:'documentation'!
    74 
    74 
    75 version
    75 version
    76     ^ '$Header: /cvs/stx/stx/libbasic/HandleRegistry.st,v 1.8 1996-11-11 11:36:42 cg Exp $'
    76     ^ '$Header: /cvs/stx/stx/libbasic/HandleRegistry.st,v 1.9 2002-03-04 19:15:09 stefan Exp $'
    77 ! !
    77 ! !