SameForAllNotification.st
author Claus Gittinger <cg@exept.de>
Tue, 09 Jul 2019 20:55:17 +0200
changeset 24417 03b083548da2
parent 13095 455dc0044481
child 18011 deb0c3355881
permissions -rw-r--r--
#REFACTORING by exept class: Smalltalk class changed: #recursiveInstallAutoloadedClassesFrom:rememberIn:maxLevels:noAutoload:packageTop:showSplashInLevels: Transcript showCR:(... bindWith:...) -> Transcript showCR:... with:...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13095
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 2010 by eXept Software AG
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     3
              All Rights Reserved
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
YesToAllConfirmation subclass:#SameForAllNotification
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	category:'Kernel-Exceptions-Notifications'
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!SameForAllNotification class methodsFor:'documentation'!
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    23
copyright
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    24
"
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    25
 COPYRIGHT (c) 2010 by eXept Software AG
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    26
              All Rights Reserved
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    27
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
 This software is furnished under a license and may be used
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    33
 hereby transferred.
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
"
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
!
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
documentation
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
"
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
    used with confirmation dialogs, especially from compilers
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
    to up-notify that further such confirmations are not wanted by the user,
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
    and the current action should be repeated in the future.
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
"
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
! !
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
!SameForAllNotification class methodsFor:'documentation'!
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    46
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    47
version_CVS
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    48
    ^ '$Header: /cvs/stx/stx/libbasic/SameForAllNotification.st,v 1.1 2010-10-14 08:38:23 cg Exp $'
455dc0044481 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    49
! !