ListEntry.st
changeset 1820 9b17f0c15849
parent 1812 c9054636e3ea
child 2196 2d64b9c3bcea
equal deleted inserted replaced
1819:576b0aaf9df1 1820:9b17f0c15849
    65 
    65 
    66     "Created: 8.2.1996 / 11:56:14 / cg"
    66     "Created: 8.2.1996 / 11:56:14 / cg"
    67 ! !
    67 ! !
    68 
    68 
    69 !ListEntry methodsFor:'queries'!
    69 !ListEntry methodsFor:'queries'!
       
    70 
       
    71 size
       
    72     "behave like a string when asked for the size"
       
    73 
       
    74     ^ self string size
       
    75 
       
    76     "Created: / 8.2.1996 / 12:54:45 / cg"
       
    77     "Modified: / 30.10.1997 / 15:42:19 / cg"
       
    78 !
    70 
    79 
    71 species
    80 species
    72     ^ String
    81     ^ String
    73 
    82 
    74     "Created: 8.2.1996 / 12:52:38 / cg"
    83     "Created: 8.2.1996 / 12:52:38 / cg"
   147 
   156 
   148 hash
   157 hash
   149     "return an integer useful for hashing"
   158     "return an integer useful for hashing"
   150 
   159 
   151     ^ self asString hash
   160     ^ self asString hash
   152 !
       
   153 
       
   154 size
       
   155     "behave like a string when asked for the size"
       
   156 
       
   157     ^ self string size
       
   158 
       
   159     "Created: / 8.2.1996 / 12:54:45 / cg"
       
   160     "Modified: / 30.10.1997 / 15:42:19 / cg"
       
   161 ! !
   161 ! !
   162 
   162 
   163 !ListEntry methodsFor:'testing'!
   163 !ListEntry methodsFor:'testing'!
   164 
   164 
   165 includes:aCharacter 
   165 includes:aCharacter 
   171 ! !
   171 ! !
   172 
   172 
   173 !ListEntry class methodsFor:'documentation'!
   173 !ListEntry class methodsFor:'documentation'!
   174 
   174 
   175 version
   175 version
   176     ^ '$Header: /cvs/stx/stx/libwidg2/ListEntry.st,v 1.16 2000-08-19 11:25:24 cg Exp $'
   176     ^ '$Header: /cvs/stx/stx/libwidg2/ListEntry.st,v 1.17 2000-08-22 13:56:59 cg Exp $'
   177 ! !
   177 ! !