IsDebuggingQuery.st
branchjv
changeset 18028 e39da2aa21bc
parent 18011 deb0c3355881
parent 14836 8322ad4e8ad3
child 18120 e3a375d5f6a8
equal deleted inserted replaced
18027:3621469cc5e8 18028:e39da2aa21bc
       
     1 "
       
     2  COPYRIGHT (c) 2012 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 "
     1 "{ Package: 'stx:libbasic' }"
    12 "{ Package: 'stx:libbasic' }"
     2 
    13 
     3 Query subclass:#IsDebuggingQuery
    14 Query subclass:#IsDebuggingQuery
     4 	instanceVariableNames:''
    15 	instanceVariableNames:''
     5 	classVariableNames:''
    16 	classVariableNames:''
     6 	poolDictionaries:''
    17 	poolDictionaries:''
     7 	category:'Interface-Debugger'
    18 	category:'Interface-Debugger'
     8 !
    19 !
     9 
    20 
       
    21 !IsDebuggingQuery class methodsFor:'documentation'!
       
    22 
       
    23 copyright
       
    24 "
       
    25  COPYRIGHT (c) 2012 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 ! !
    10 
    37 
    11 !IsDebuggingQuery methodsFor:'default values'!
    38 !IsDebuggingQuery methodsFor:'default values'!
    12 
    39 
    13 defaultResumeValue
    40 defaultResumeValue
    14     ^ false
    41     ^ false
    15 ! !
    42 ! !
    16 
    43 
    17 !IsDebuggingQuery class methodsFor:'documentation'!
    44 !IsDebuggingQuery class methodsFor:'documentation'!
    18 
    45 
    19 version
    46 version
    20     ^ '$Header: /cvs/stx/stx/libbasic/IsDebuggingQuery.st,v 1.1 2012-10-18 13:31:55 stefan Exp $'
    47     ^ '$Header: /cvs/stx/stx/libbasic/IsDebuggingQuery.st,v 1.2 2013-03-06 17:09:36 cg Exp $'
    21 !
    48 !
    22 
    49 
    23 version_CVS
    50 version_CVS
    24     ^ '$Header: /cvs/stx/stx/libbasic/IsDebuggingQuery.st,v 1.1 2012-10-18 13:31:55 stefan Exp $'
    51     ^ '$Header: /cvs/stx/stx/libbasic/IsDebuggingQuery.st,v 1.2 2013-03-06 17:09:36 cg Exp $'
    25 ! !
    52 ! !
       
    53