Lookup.st
branchjv
changeset 18011 deb0c3355881
parent 17888 e650d3cb3084
parent 13405 13dea24362ff
child 18120 e3a375d5f6a8
equal deleted inserted replaced
18006:4e8f3d37bdbf 18011:deb0c3355881
     1 "
     1 "
     2  COPYRIGHT (c) 2006 by eXept Software AG
     2  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
     3               All Rights Reserved
     3               All Rights Reserved
     4 
     4 
     5  This software is furnished under a license and may be used
     5 Permission is hereby granted, free of charge, to any person
     6  only in accordance with the terms of that license and with the
     6 obtaining a copy of this software and associated documentation
     7  inclusion of the above copyright notice.   This software may not
     7 files (the 'Software'), to deal in the Software without
     8  be provided or otherwise made available to, or used by, any
     8 restriction, including without limitation the rights to use,
     9  other person.  No title to or ownership of the software is
     9 copy, modify, merge, publish, distribute, sublicense, and/or sell
    10  hereby transferred.
    10 copies of the Software, and to permit persons to whom the
       
    11 Software is furnished to do so, subject to the following
       
    12 conditions:
       
    13 
       
    14 The above copyright notice and this permission notice shall be
       
    15 included in all copies or substantial portions of the Software.
       
    16 
       
    17 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
       
    18 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
       
    19 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
       
    20 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
       
    21 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
       
    22 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
       
    23 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
       
    24 OTHER DEALINGS IN THE SOFTWARE.
    11 "
    25 "
    12 "{ Package: 'stx:libbasic' }"
    26 "{ Package: 'stx:libbasic' }"
    13 
    27 
    14 Object subclass:#Lookup
    28 Object subclass:#Lookup
    15 	instanceVariableNames:''
    29 	instanceVariableNames:''
    16 	classVariableNames:''
    30 	classVariableNames:''
    17 	poolDictionaries:''
    31 	poolDictionaries:''
    18 	category:'Kernel-Classes'
    32 	category:'Kernel-Extensions'
    19 !
    33 !
    20 
    34 
    21 !Lookup class methodsFor:'documentation'!
    35 !Lookup class methodsFor:'documentation'!
    22 
    36 
    23 copyright
    37 copyright
    24 "
    38 "
    25  COPYRIGHT (c) 2006 by eXept Software AG
    39  COPYRIGHT (c) 2010 by Jan Vrany, SWING Research Group. CTU in Prague
    26               All Rights Reserved
    40               All Rights Reserved
    27 
    41 
    28  This software is furnished under a license and may be used
    42 Permission is hereby granted, free of charge, to any person
    29  only in accordance with the terms of that license and with the
    43 obtaining a copy of this software and associated documentation
    30  inclusion of the above copyright notice.   This software may not
    44 files (the 'Software'), to deal in the Software without
    31  be provided or otherwise made available to, or used by, any
    45 restriction, including without limitation the rights to use,
    32  other person.  No title to or ownership of the software is
    46 copy, modify, merge, publish, distribute, sublicense, and/or sell
    33  hereby transferred.
    47 copies of the Software, and to permit persons to whom the
       
    48 Software is furnished to do so, subject to the following
       
    49 conditions:
       
    50 
       
    51 The above copyright notice and this permission notice shall be
       
    52 included in all copies or substantial portions of the Software.
       
    53 
       
    54 THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
       
    55 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
       
    56 OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
       
    57 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
       
    58 HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
       
    59 WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
       
    60 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
       
    61 OTHER DEALINGS IN THE SOFTWARE.
    34 "
    62 "
    35 ! !
    63 ! !
    36 
    64 
    37 !Lookup class methodsFor:'initialization'!
    65 !Lookup class methodsFor:'initialization'!
    38 
    66 
   149     "Created: / 01-10-2011 / 13:18:40 / Jan Kurs <kursjan@fit.cvut.cz>"
   177     "Created: / 01-10-2011 / 13:18:40 / Jan Kurs <kursjan@fit.cvut.cz>"
   150 ! !
   178 ! !
   151 
   179 
   152 !Lookup class methodsFor:'documentation'!
   180 !Lookup class methodsFor:'documentation'!
   153 
   181 
       
   182 version_CVS
       
   183     ^ '$Header: /cvs/stx/stx/libbasic/Lookup.st,v 1.2 2011-06-28 11:04:17 cg Exp $'
       
   184 !
       
   185 
   154 version_SVN
   186 version_SVN
   155     ^ '$Id: Lookup.st 10722 2011-10-13 15:42:52Z vranyj1 $'
   187     ^ '$Id: Lookup.st 10722 2011-10-13 15:42:52Z vranyj1 $'
   156 ! !
   188 ! !
   157 
   189 
   158 Lookup initialize!
   190 Lookup initialize!