DoNotShowCompilerWarningAgainForThisReceiverSelectorActionQuery.st
changeset 3769 025b8151cec1
equal deleted inserted replaced
3768:1d647e88ef05 3769:025b8151cec1
       
     1 "
       
     2  COPYRIGHT (c) 2016 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:libcomp' }"
       
    13 
       
    14 "{ NameSpace: Smalltalk }"
       
    15 
       
    16 Query subclass:#DoNotShowCompilerWarningAgainForThisReceiverSelectorActionQuery
       
    17 	instanceVariableNames:''
       
    18 	classVariableNames:''
       
    19 	poolDictionaries:''
       
    20 	category:'System-Compiler'
       
    21 !
       
    22 
       
    23 !DoNotShowCompilerWarningAgainForThisReceiverSelectorActionQuery class methodsFor:'documentation'!
       
    24 
       
    25 copyright
       
    26 "
       
    27  COPYRIGHT (c) 2016 by eXept Software AG
       
    28               All Rights Reserved
       
    29 
       
    30  This software is furnished under a license and may be used
       
    31  only in accordance with the terms of that license and with the
       
    32  inclusion of the above copyright notice.   This software may not
       
    33  be provided or otherwise made available to, or used by, any
       
    34  other person.  No title to or ownership of the software is
       
    35  hereby transferred.
       
    36 "
       
    37 !
       
    38 
       
    39 documentation
       
    40 "
       
    41     Used to ask if a warning should be shown again for this receiver/selector combination.
       
    42     When the compiler makes an error notification, it raises this query to
       
    43     ask for an actionblock. If the query is not answered, the 'no not show again' dialog
       
    44     is not shown.
       
    45     If it is answered, the returned value must be the block.
       
    46     The dialog is shown, and if the user confirms (do not show again), the block is called.
       
    47     The block is typically provided from the warning generation code, which sets/clears
       
    48     some flag in the user preferences.
       
    49 "
       
    50 ! !
       
    51 
       
    52 !DoNotShowCompilerWarningAgainForThisReceiverSelectorActionQuery class methodsFor:'queries'!
       
    53 
       
    54 actionQuery
       
    55     ^ self query
       
    56 ! !
       
    57 
       
    58 !DoNotShowCompilerWarningAgainForThisReceiverSelectorActionQuery class methodsFor:'documentation'!
       
    59 
       
    60 version
       
    61     ^ '$Header$'
       
    62 !
       
    63 
       
    64 version_CVS
       
    65     ^ '$Header$'
       
    66 ! !
       
    67