BuiltinLookup.st
author vrany
Tue, 28 Jun 2011 12:51:38 +0200
changeset 13401 36713d9bc967
child 13404 7b32ff0e0c72
permissions -rw-r--r--
Added Lookup.st BuiltinLookup.st
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13401
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
     1
"
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
     2
 COPYRIGHT (c) 2006 by eXept Software AG
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
     3
              All Rights Reserved
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
     4
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
     5
 This software is furnished under a license and may be used
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    10
 hereby transferred.
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    11
"
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    12
"{ Package: 'stx:libbasic' }"
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    13
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    14
Lookup subclass:#BuiltinLookup
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    15
	instanceVariableNames:''
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    16
	classVariableNames:'Instance'
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    17
	poolDictionaries:''
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    18
	category:'Kernel-Classes'
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    19
!
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    20
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    21
!BuiltinLookup class methodsFor:'documentation'!
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    22
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    23
copyright
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    24
"
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    25
 COPYRIGHT (c) 2006 by eXept Software AG
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    26
              All Rights Reserved
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    27
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    28
 This software is furnished under a license and may be used
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    29
 only in accordance with the terms of that license and with the
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    30
 inclusion of the above copyright notice.   This software may not
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    31
 be provided or otherwise made available to, or used by, any
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    32
 other person.  No title to or ownership of the software is
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    33
 hereby transferred.
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    34
"
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    35
! !
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    36
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    37
!BuiltinLookup class methodsFor:'instance creation'!
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    38
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    39
new
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    40
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    41
    ^self instance
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    42
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    43
    "Created: / 26-04-2010 / 19:25:22 / Jan Vrany <jan.vrany@fit.cvut.cz>"
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    44
! !
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    45
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    46
!BuiltinLookup class methodsFor:'accessing'!
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    47
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    48
instance
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    49
    
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    50
    Instance isNil ifTrue: [Instance := self basicNew].
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    51
    ^ Instance
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    52
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    53
    "Created: / 26-04-2010 / 19:25:29 / Jan Vrany <jan.vrany@fit.cvut.cz>"
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    54
    "Modified: / 26-04-2010 / 21:32:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    55
! !
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    56
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    57
!BuiltinLookup class methodsFor:'documentation'!
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    58
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    59
version_SVN
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    60
    ^ '$Id: BuiltinLookup.st,v 1.1 2011-06-28 10:51:38 vrany Exp $'
36713d9bc967 Added Lookup.st BuiltinLookup.st
vrany
parents:
diff changeset
    61
! !