UserInformation.st
changeset 11197 cc74ff505b6e
parent 7588 1819a1c408f3
child 17711 39faaaf888b4
equal deleted inserted replaced
11196:3e4114139cc9 11197:cc74ff505b6e
     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 "{ Package: 'stx:libbasic' }"
    14 
    13 
    15 UserNotification subclass:#UserInformation
    14 UserNotification subclass:#UserInformation
    16 	instanceVariableNames:''
    15 	instanceVariableNames:''
    17 	classVariableNames:''
    16 	classVariableNames:''
    18 	poolDictionaries:''
    17 	poolDictionaries:''
    19 	category:'Kernel-Exceptions'
    18 	category:'Kernel-Exceptions-Notifications'
    20 !
    19 !
    21 
    20 
    22 !UserInformation class methodsFor:'documentation'!
    21 !UserInformation class methodsFor:'documentation'!
    23 
    22 
    24 copyright
    23 copyright
    38 documentation
    37 documentation
    39 "    
    38 "    
    40     UserInformation is similar to UserNotification,
    39     UserInformation is similar to UserNotification,
    41     but used for less important messages. 
    40     but used for less important messages. 
    42     It produces an info box with the message on the screen. 
    41     It produces an info box with the message on the screen. 
    43     If no display is available, the message is written 
    42     If no display is available, the message is written to the Transcript (headless operation).
    44     to the Transcript.
       
    45 
    43 
    46     [author:]
    44     [author:]
    47         Stefan Vogel
    45         Stefan Vogel
    48 
    46 
    49     [see also:]
    47     [see also:]
    63 ! !
    61 ! !
    64 
    62 
    65 !UserInformation class methodsFor:'documentation'!
    63 !UserInformation class methodsFor:'documentation'!
    66 
    64 
    67 version
    65 version
    68     ^ '$Header: /cvs/stx/stx/libbasic/UserInformation.st,v 1.3 2003-08-29 19:19:07 cg Exp $'
    66     ^ '$Header: /cvs/stx/stx/libbasic/UserInformation.st,v 1.4 2008-10-04 08:42:26 cg Exp $'
    69 ! !
    67 ! !
    70 
    68 
    71 UserInformation initialize!
    69 UserInformation initialize!