HandleRegistry.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 19 Jan 2012 10:06:02 +0000
branchjv
changeset 17910 8d796ca8bd1d
parent 17892 d86c8bd5ece3
child 17911 a99f15c5efa5
permissions -rw-r--r--
Merged with /trunk

"
 COPYRIGHT (c) 1995 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:libbasic' }"

Registry subclass:#HandleRegistry
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'System-Support'
!

!HandleRegistry class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1995 by Claus Gittinger
	      All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

documentation
"
    HandleRegistries are like Registries, in that they watch for the death of
    a registered object. However, they send a self-change notification, passing the registered
    handle as argument, instead of creating a shallow copy and letting it do the finalization.
    Use Registry for objects which know themself how to clean up;
    use HandleRegistry, if someone else does the cleanup.

    [author:]
        Claus Gittinger
"
! !

!HandleRegistry methodsFor:'dispose handling'!

informDispose:someHandle
    "an element was disposed; let my dependents know about this"

    self changed:#finalize with:someHandle
! !

!HandleRegistry methodsFor:'redefined to block'!

register:anObject
    "not useful for HandleRegistry - use #register:as:"

    self shouldNotImplement
!

registerChange:anObject
    "not useful for HandleRegistry"

    self shouldNotImplement
! !

!HandleRegistry class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/HandleRegistry.st,v 1.9 2002/03/04 19:15:09 stefan Exp $'
!

version_SVN
    ^ '$Id: HandleRegistry.st 10758 2012-01-19 10:06:02Z vranyj1 $'
! !