JavaUnresolvedRefConstant.st
author Claus Gittinger <cg@exept.de>
Thu, 22 Dec 2005 18:00:03 +0100
changeset 2125 cfa7b540ebf1
parent 2108 ca8c4e7db2e8
permissions -rw-r--r--
*** empty log message ***
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
454
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
     1
"
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
     2
 COPYRIGHT (c) 1997 by eXept Software AG
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
     3
              All Rights Reserved
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
     4
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
     5
 This software is furnished under a license and may be used
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
     6
 only in accordance with the terms of that license and with the
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
     8
 be provided or otherwise made available to, or used by, any
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
     9
 other person.  No title to or ownership of the software is
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    10
 hereby transferred.
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    11
"
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    12
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    13
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    14
713
75e92ac63bf1 category change
cg
parents: 454
diff changeset
    15
"{ Package: 'stx:libjava' }"
75e92ac63bf1 category change
cg
parents: 454
diff changeset
    16
1
083530508d9c intitial checkin
cg
parents:
diff changeset
    17
JavaUnresolvedConstant subclass:#JavaUnresolvedRefConstant
083530508d9c intitial checkin
cg
parents:
diff changeset
    18
	instanceVariableNames:'nameandTypeIndex'
083530508d9c intitial checkin
cg
parents:
diff changeset
    19
	classVariableNames:''
083530508d9c intitial checkin
cg
parents:
diff changeset
    20
	poolDictionaries:''
713
75e92ac63bf1 category change
cg
parents: 454
diff changeset
    21
	category:'Languages-Java-Reader-Support'
1
083530508d9c intitial checkin
cg
parents:
diff changeset
    22
!
083530508d9c intitial checkin
cg
parents:
diff changeset
    23
454
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    24
!JavaUnresolvedRefConstant class methodsFor:'documentation'!
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    25
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    26
copyright
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    27
"
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    28
 COPYRIGHT (c) 1997 by eXept Software AG
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    29
              All Rights Reserved
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    30
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    31
 This software is furnished under a license and may be used
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    32
 only in accordance with the terms of that license and with the
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    33
 inclusion of the above copyright notice.   This software may not
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    34
 be provided or otherwise made available to, or used by, any
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    35
 other person.  No title to or ownership of the software is
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    36
 hereby transferred.
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    37
"
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    38
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    39
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    40
! !
1
083530508d9c intitial checkin
cg
parents:
diff changeset
    41
083530508d9c intitial checkin
cg
parents:
diff changeset
    42
!JavaUnresolvedRefConstant methodsFor:'accessing'!
083530508d9c intitial checkin
cg
parents:
diff changeset
    43
083530508d9c intitial checkin
cg
parents:
diff changeset
    44
nameandTypeIndex:name_and_type_index
083530508d9c intitial checkin
cg
parents:
diff changeset
    45
    nameandTypeIndex := name_and_type_index
083530508d9c intitial checkin
cg
parents:
diff changeset
    46
083530508d9c intitial checkin
cg
parents:
diff changeset
    47
    "Created: 15.4.1996 / 16:12:00 / cg"
083530508d9c intitial checkin
cg
parents:
diff changeset
    48
! !
083530508d9c intitial checkin
cg
parents:
diff changeset
    49
135
098936234135 *** empty log message ***
cg
parents: 93
diff changeset
    50
!JavaUnresolvedRefConstant class methodsFor:'documentation'!
1
083530508d9c intitial checkin
cg
parents:
diff changeset
    51
083530508d9c intitial checkin
cg
parents:
diff changeset
    52
version
2108
ca8c4e7db2e8 category change
Claus Gittinger <cg@exept.de>
parents: 748
diff changeset
    53
    ^ '$Header: /cvs/stx/stx/libjava/Attic/JavaUnresolvedRefConstant.st,v 1.6 2002-11-22 20:11:40 cg Exp $'
1
083530508d9c intitial checkin
cg
parents:
diff changeset
    54
! !