JavaUnresolvedRefConstant.st
author cg
Mon, 16 Nov 1998 15:17:54 +0000
changeset 454 38f590639d65
parent 135 098936234135
child 713 75e92ac63bf1
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
1
083530508d9c intitial checkin
cg
parents:
diff changeset
    15
JavaUnresolvedConstant subclass:#JavaUnresolvedRefConstant
083530508d9c intitial checkin
cg
parents:
diff changeset
    16
	instanceVariableNames:'nameandTypeIndex'
083530508d9c intitial checkin
cg
parents:
diff changeset
    17
	classVariableNames:''
083530508d9c intitial checkin
cg
parents:
diff changeset
    18
	poolDictionaries:''
083530508d9c intitial checkin
cg
parents:
diff changeset
    19
	category:'Java-Reader-Support'
083530508d9c intitial checkin
cg
parents:
diff changeset
    20
!
083530508d9c intitial checkin
cg
parents:
diff changeset
    21
454
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    22
!JavaUnresolvedRefConstant class methodsFor:'documentation'!
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    23
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    24
copyright
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    25
"
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    26
 COPYRIGHT (c) 1997 by eXept Software AG
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    27
              All Rights Reserved
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    28
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    29
 This software is furnished under a license and may be used
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    30
 only in accordance with the terms of that license and with the
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    31
 inclusion of the above copyright notice.   This software may not
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    32
 be provided or otherwise made available to, or used by, any
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    33
 other person.  No title to or ownership of the software is
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    34
 hereby transferred.
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    35
"
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    36
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    37
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    38
! !
1
083530508d9c intitial checkin
cg
parents:
diff changeset
    39
083530508d9c intitial checkin
cg
parents:
diff changeset
    40
!JavaUnresolvedRefConstant methodsFor:'accessing'!
083530508d9c intitial checkin
cg
parents:
diff changeset
    41
083530508d9c intitial checkin
cg
parents:
diff changeset
    42
nameandTypeIndex:name_and_type_index
083530508d9c intitial checkin
cg
parents:
diff changeset
    43
    nameandTypeIndex := name_and_type_index
083530508d9c intitial checkin
cg
parents:
diff changeset
    44
083530508d9c intitial checkin
cg
parents:
diff changeset
    45
    "Created: 15.4.1996 / 16:12:00 / cg"
083530508d9c intitial checkin
cg
parents:
diff changeset
    46
! !
083530508d9c intitial checkin
cg
parents:
diff changeset
    47
135
098936234135 *** empty log message ***
cg
parents: 93
diff changeset
    48
!JavaUnresolvedRefConstant class methodsFor:'documentation'!
1
083530508d9c intitial checkin
cg
parents:
diff changeset
    49
083530508d9c intitial checkin
cg
parents:
diff changeset
    50
version
454
38f590639d65 *** empty log message ***
cg
parents: 135
diff changeset
    51
    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaUnresolvedRefConstant.st,v 1.5 1998/11/16 15:16:41 cg Exp $'
1
083530508d9c intitial checkin
cg
parents:
diff changeset
    52
! !