IsDebuggingQuery.st
author Claus Gittinger <cg@exept.de>
Sun, 20 Apr 2014 00:50:48 +0200
changeset 16381 d47eab2e1e10
parent 14836 8322ad4e8ad3
child 17164 d33ed5ddd0d3
child 18028 e39da2aa21bc
permissions -rw-r--r--
class: OSXOperatingSystem added: #getTrashDirectory
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14836
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
     1
"
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
     2
 COPYRIGHT (c) 2012 by eXept Software AG
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
     3
              All Rights Reserved
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
     4
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
     5
 This software is furnished under a license and may be used
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
     6
 only in accordance with the terms of that license and with the
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
     8
 be provided or otherwise made available to, or used by, any
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
     9
 other person.  No title to or ownership of the software is
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    10
 hereby transferred.
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    11
"
14389
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    13
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    14
Query subclass:#IsDebuggingQuery
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    15
	instanceVariableNames:''
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    16
	classVariableNames:''
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    17
	poolDictionaries:''
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    18
	category:'Interface-Debugger'
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    19
!
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    20
14836
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    21
!IsDebuggingQuery class methodsFor:'documentation'!
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    22
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    23
copyright
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    24
"
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    25
 COPYRIGHT (c) 2012 by eXept Software AG
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    26
              All Rights Reserved
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    27
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    28
 This software is furnished under a license and may be used
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    29
 only in accordance with the terms of that license and with the
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    31
 be provided or otherwise made available to, or used by, any
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    32
 other person.  No title to or ownership of the software is
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    33
 hereby transferred.
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    34
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    35
"
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    36
! !
14389
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    37
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    38
!IsDebuggingQuery methodsFor:'default values'!
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    39
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    40
defaultResumeValue
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    41
    ^ false
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    42
! !
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    43
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    44
!IsDebuggingQuery class methodsFor:'documentation'!
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    45
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    46
version
14836
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    47
    ^ '$Header: /cvs/stx/stx/libbasic/IsDebuggingQuery.st,v 1.2 2013-03-06 17:09:36 cg Exp $'
14389
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    48
!
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    49
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    50
version_CVS
14836
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    51
    ^ '$Header: /cvs/stx/stx/libbasic/IsDebuggingQuery.st,v 1.2 2013-03-06 17:09:36 cg Exp $'
14389
f3f0359eddd1 initial checkin
Stefan Vogel <sv@exept.de>
parents:
diff changeset
    52
! !
14836
8322ad4e8ad3 added: #copyright
Claus Gittinger <cg@exept.de>
parents: 14389
diff changeset
    53