SystemChangeNotifier.st
branchjv
changeset 17761 b0e5971141bc
parent 17735 6a5bc05f696a
child 17763 019bb9c842c5
equal deleted inserted replaced
17760:b2add4d45cfb 17761:b0e5971141bc
       
     1 "
       
     2  COPYRIGHT (c) 2006 by eXept Software AG
       
     3               All Rights Reserved
       
     4 
       
     5  This software is furnished under a license and may be used
       
     6  only in accordance with the terms of that license and with the
       
     7  inclusion of the above copyright notice.   This software may not
       
     8  be provided or otherwise made available to, or used by, any
       
     9  other person.  No title to or ownership of the software is
       
    10  hereby transferred.
       
    11 "
     1 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
     2 
    13 
     3 Object subclass:#SystemChangeNotifier
    14 Object subclass:#SystemChangeNotifier
     4 	instanceVariableNames:'silenceLevel'
    15 	instanceVariableNames:'silenceLevel'
     5 	classVariableNames:'UniqueInstance'
    16 	classVariableNames:'UniqueInstance'
     6 	poolDictionaries:''
    17 	poolDictionaries:''
     7 	category:'Kernel-Classes'
    18 	category:'Kernel-Classes'
     8 !
    19 !
     9 
    20 
    10 !SystemChangeNotifier class methodsFor:'documentation'!
    21 !SystemChangeNotifier class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 2006 by eXept Software AG
       
    26               All Rights Reserved
       
    27 
       
    28  This software is furnished under a license and may be used
       
    29  only in accordance with the terms of that license and with the
       
    30  inclusion of the above copyright notice.   This software may not
       
    31  be provided or otherwise made available to, or used by, any
       
    32  other person.  No title to or ownership of the software is
       
    33  hereby transferred.
       
    34 "
       
    35 !
    11 
    36 
    12 documentation
    37 documentation
    13 "
    38 "
    14     For now, this implementation is mostly for squeak compatibility.
    39     For now, this implementation is mostly for squeak compatibility.
    15     However, over time, we will move the change notification code from ClassDescription to here,
    40     However, over time, we will move the change notification code from ClassDescription to here,
    87 
   112 
    88 !SystemChangeNotifier class methodsFor:'documentation'!
   113 !SystemChangeNotifier class methodsFor:'documentation'!
    89 
   114 
    90 version_CVS
   115 version_CVS
    91     ^ '§Header: /cvs/stx/stx/libbasic/SystemChangeNotifier.st,v 1.3 2009/10/26 17:31:00 cg Exp §'
   116     ^ '§Header: /cvs/stx/stx/libbasic/SystemChangeNotifier.st,v 1.3 2009/10/26 17:31:00 cg Exp §'
       
   117 !
       
   118 
       
   119 version_SVN
       
   120     ^ '$Id: SystemChangeNotifier.st 10517 2010-04-26 18:26:38Z vranyj1 $'
    92 ! !
   121 ! !
    93 
       
    94