AbortAllOperationWantedQuery.st
branchjv
changeset 17834 04ff72c5039a
child 17841 7abcc4aef871
equal deleted inserted replaced
17833:1602a49e146e 17834:04ff72c5039a
       
     1 "
       
     2  COPYRIGHT (c) 2011 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 "
       
    12 "{ Package: 'stx:libbasic' }"
       
    13 
       
    14 Query subclass:#AbortAllOperationWantedQuery
       
    15 	instanceVariableNames:''
       
    16 	classVariableNames:''
       
    17 	poolDictionaries:''
       
    18 	category:'Kernel-Exceptions-Control'
       
    19 !
       
    20 
       
    21 !AbortAllOperationWantedQuery class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 2011 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 !
       
    36 
       
    37 documentation
       
    38 "
       
    39     A query to ask, if AbortAllOperationRequest should be offered via an extra
       
    40     button from a dialog.
       
    41 
       
    42     This is used by dialog boxes, to decide if an extra 'Abort All' button should be
       
    43     shown, in situations where an operation might be issued both for a single item
       
    44     or for a group of items, and it is not known at the place where the dialog is shown,
       
    45     if it is part of a group-operation.
       
    46 "
       
    47 ! !
       
    48 
       
    49 !AbortAllOperationWantedQuery methodsFor:'defaults'!
       
    50 
       
    51 defaultResumeValue
       
    52     ^ false
       
    53 
       
    54     "
       
    55      AbortAllOperationWantedQuery query
       
    56 
       
    57      AbortAllOperationWantedQuery 
       
    58         answer:true
       
    59         do:[
       
    60             AbortAllOperationWantedQuery query
       
    61         ].
       
    62     "
       
    63 
       
    64     "Created: / 09-02-2011 / 11:42:28 / cg"
       
    65 ! !
       
    66 
       
    67 !AbortAllOperationWantedQuery class methodsFor:'documentation'!
       
    68 
       
    69 version_CVS
       
    70     ^ '§Header: /var/local/cvs/stx/libbasic/AbortAllOperationWantedQuery.st,v 1.2 2011-02-09 10:44:37 cg Exp §'
       
    71 ! !