UserInformation.st
author Claus Gittinger <cg@exept.de>
Wed, 15 Mar 2006 11:37:12 +0100
changeset 9284 6afd161ee43c
parent 7588 1819a1c408f3
child 11197 cc74ff505b6e
permissions -rw-r--r--
+skipTo:

"
 COPYRIGHT (c) 2003 by eXept Software AG
              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' }"

UserNotification subclass:#UserInformation
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Exceptions'
!

!UserInformation class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2003 by eXept Software AG
              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
"    
    UserInformation is similar to UserNotification,
    but used for less important messages. 
    It produces an info box with the message on the screen. 
    If no display is available, the message is written 
    to the Transcript.

    [author:]
        Stefan Vogel

    [see also:]
        Signal
"
! !

!UserInformation class methodsFor:'initialization'!

initialize

    NotifierString := 'User Information:'.

    "
     self initialize
    "
! !

!UserInformation class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/UserInformation.st,v 1.3 2003-08-29 19:19:07 cg Exp $'
! !

UserInformation initialize!