JavaUnresolvedClassConstant.st
changeset 392 03a101c707ec
parent 360 e3df9401df00
child 399 94d37f2032a1
equal deleted inserted replaced
391:ad7117dee90d 392:03a101c707ec
    12     |ref|
    12     |ref|
    13 
    13 
    14     ref := Java unresolvedClassRefFor:nm.
    14     ref := Java unresolvedClassRefFor:nm.
    15     ref notNil ifTrue:[^ ref].
    15     ref notNil ifTrue:[^ ref].
    16 
    16 
    17     ref := self new fullName:nm.
    17     ref := self new setFullName:nm.
    18     Java rememberUnresolved:ref.
    18     Java rememberUnresolved:ref.
    19     ^ ref
    19     ^ ref
       
    20 
       
    21     "Modified: / 19.10.1998 / 20:18:13 / cg"
    20 !
    22 !
    21 
    23 
    22 pool:aPool poolIndex:slotIndex fullName:aString
    24 pool:aPool poolIndex:slotIndex fullName:aString
    23     ^ self new 
    25     ^ self new 
    24           pool:aPool poolIndex:slotIndex fullName:aString
    26           pool:aPool poolIndex:slotIndex fullName:aString
   274 ! !
   276 ! !
   275 
   277 
   276 !JavaUnresolvedClassConstant class methodsFor:'documentation'!
   278 !JavaUnresolvedClassConstant class methodsFor:'documentation'!
   277 
   279 
   278 version
   280 version
   279     ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaUnresolvedClassConstant.st,v 1.29 1998/07/20 11:29:46 cg Exp $'
   281     ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaUnresolvedClassConstant.st,v 1.30 1998/10/19 22:40:19 cg Exp $'
   280 ! !
   282 ! !