Tools__ToDoNotification.st
author Jan Vrany <jan.vrany@labware.com>
Sat, 30 Sep 2023 22:55:25 +0100
branchjv
changeset 19648 5df52d354504
parent 12650 e0f607754b9a
permissions -rw-r--r--
`TestRunner2`: do not use `#keysAndValuesCollect:` ...as semantics differ among smalltalk dialects. This is normally not a problem until we use code that adds this as a "compatibility" method. So to stay on a safe side, avoid using this method.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
8239
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
     1
"
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
     3
              All Rights Reserved
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
     4
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
     5
 This software is furnished under a license and may be used
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
     6
 only in accordance with the terms of that license and with the
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
     8
 be provided or otherwise made available to, or used by, any
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
     9
 other person.  No title to or ownership of the software is
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    10
 hereby transferred.
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    11
"
7730
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    12
"{ Package: 'stx:libtool' }"
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    13
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    14
"{ NameSpace: Tools }"
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    15
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    16
Notification subclass:#ToDoNotification
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    17
	instanceVariableNames:''
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    18
	classVariableNames:''
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
	poolDictionaries:''
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
	category:'Interface-Smalltalk-ToDo'
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    21
!
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    22
8239
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    23
!ToDoNotification class methodsFor:'documentation'!
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    24
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    25
copyright
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    26
"
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    27
 COPYRIGHT (c) 2006 by eXept Software AG
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    28
              All Rights Reserved
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    29
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    30
 This software is furnished under a license and may be used
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    31
 only in accordance with the terms of that license and with the
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    32
 inclusion of the above copyright notice.   This software may not
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    33
 be provided or otherwise made available to, or used by, any
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    34
 other person.  No title to or ownership of the software is
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    35
 hereby transferred.
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    36
"
8be821ca02f9 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7730
diff changeset
    37
! !
7730
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
!ToDoNotification class methodsFor:'documentation'!
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
e97ee531e941 initial checkin
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
version
12125
0c49a3b13e43 Merged with /trunk
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    42
    ^ '$Header: /cvs/stx/stx/libtool/Tools__ToDoNotification.st,v 1.2 2008/08/20 19:41:37 cg Exp $'
12650
e0f607754b9a Merged 18d06283743d and ff31bac2fd1b (branch default - CVS HEAD)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12125
diff changeset
    43
!
e0f607754b9a Merged 18d06283743d and ff31bac2fd1b (branch default - CVS HEAD)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12125
diff changeset
    44
e0f607754b9a Merged 18d06283743d and ff31bac2fd1b (branch default - CVS HEAD)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12125
diff changeset
    45
version_HG
e0f607754b9a Merged 18d06283743d and ff31bac2fd1b (branch default - CVS HEAD)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12125
diff changeset
    46
e0f607754b9a Merged 18d06283743d and ff31bac2fd1b (branch default - CVS HEAD)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12125
diff changeset
    47
    ^ '$Changeset: <not expanded> $'
12125
0c49a3b13e43 Merged with /trunk
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12123
diff changeset
    48
! !
12650
e0f607754b9a Merged 18d06283743d and ff31bac2fd1b (branch default - CVS HEAD)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 12125
diff changeset
    49