Tools__ToDoNotification.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sun, 29 Jan 2012 12:53:39 +0000
branchjv
changeset 12123 4bde08cebd48
parent 8239 8be821ca02f9
child 12125 0c49a3b13e43
permissions -rw-r--r--
trunk branched into /branches/jv
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
12123
4bde08cebd48 trunk branched into /branches/jv
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 8239
diff changeset
    42
    ^ '$Id: Tools__ToDoNotification.st 7810 2011-08-12 14:54:02Z vranyj1 $'
4bde08cebd48 trunk branched into /branches/jv
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 8239
diff changeset
    43
! !