UserNotification.st
branchjv
changeset 17732 a1892eeca6c0
parent 17711 39faaaf888b4
child 17734 406b1590afe8
equal deleted inserted replaced
17731:295728e8f410 17732:a1892eeca6c0
     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 
    13 
    14 GenericException subclass:#UserNotification
    14 Notification subclass:#UserNotification
    15 	instanceVariableNames:''
    15 	instanceVariableNames:''
    16 	classVariableNames:''
    16 	classVariableNames:''
    17 	poolDictionaries:''
    17 	poolDictionaries:''
    18 	category:'Kernel-Exceptions-Notifications'
    18 	category:'Kernel-Exceptions-Notifications'
    19 !
    19 !
    36 !
    36 !
    37 
    37 
    38 documentation
    38 documentation
    39 "    
    39 "    
    40     UserNotification is the superclass of all user notification 
    40     UserNotification is the superclass of all user notification 
    41     exceptions in the system. It produces an info box with the message
    41     signals in the system. It produces an info box with the message on the screen. 
    42     on the screen. 
       
    43     If no display is available, the message is written to the Transcript (headless operation).
    42     If no display is available, the message is written to the Transcript (headless operation).
    44 
    43 
    45     [author:]
    44     [author:]
    46         Stefan Vogel
    45         Stefan Vogel
    47 
    46 
   141 ! !
   140 ! !
   142 
   141 
   143 !UserNotification class methodsFor:'documentation'!
   142 !UserNotification class methodsFor:'documentation'!
   144 
   143 
   145 version
   144 version
   146     ^ '$Id: UserNotification.st 10447 2009-06-14 13:09:55Z vranyj1 $'
   145     ^ '$Id: UserNotification.st 10473 2009-10-24 15:48:19Z vranyj1 $'
       
   146 !
       
   147 
       
   148 version_CVS
       
   149     ^ '§Header: /cvs/stx/stx/libbasic/UserNotification.st,v 1.15 2009/10/14 17:34:46 cg Exp §'
   147 ! !
   150 ! !
   148 
   151 
   149 UserNotification initialize!
   152 UserNotification initialize!
       
   153