Tools__ToDoListEntry.st
changeset 8238 3a52a5600bb2
parent 7997 06f76492c2ad
child 12123 4bde08cebd48
equal deleted inserted replaced
8237:6213cd99534c 8238:3a52a5600bb2
       
     1 "
       
     2  COPYRIGHT (c) 2006 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:libtool' }"
    12 "{ Package: 'stx:libtool' }"
     2 
    13 
     3 "{ NameSpace: Tools }"
    14 "{ NameSpace: Tools }"
     4 
    15 
     5 Object subclass:#ToDoListEntry
    16 Object subclass:#ToDoListEntry
     7 	classVariableNames:''
    18 	classVariableNames:''
     8 	poolDictionaries:''
    19 	poolDictionaries:''
     9 	category:'Interface-Smalltalk-ToDo'
    20 	category:'Interface-Smalltalk-ToDo'
    10 !
    21 !
    11 
    22 
       
    23 !ToDoListEntry class methodsFor:'documentation'!
       
    24 
       
    25 copyright
       
    26 "
       
    27  COPYRIGHT (c) 2006 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 ! !
    12 
    38 
    13 !ToDoListEntry methodsFor:'accessing'!
    39 !ToDoListEntry methodsFor:'accessing'!
    14 
    40 
    15 errorColor
    41 errorColor
    16     ^ Color rgbValue:16rCF0000
    42     ^ Color rgbValue:16rCF0000
   200 ! !
   226 ! !
   201 
   227 
   202 !ToDoListEntry class methodsFor:'documentation'!
   228 !ToDoListEntry class methodsFor:'documentation'!
   203 
   229 
   204 version
   230 version
   205     ^ '$Header: /cvs/stx/stx/libtool/Tools__ToDoListEntry.st,v 1.7 2008-03-03 09:39:36 cg Exp $'
   231     ^ '$Header: /cvs/stx/stx/libtool/Tools__ToDoListEntry.st,v 1.8 2008-08-20 19:41:35 cg Exp $'
   206 ! !
   232 ! !