src/JavaMethodRef2.st
branchjk_new_structure
changeset 761 43e017ec7958
parent 758 be8e84381ce0
child 772 0f92c23b80ee
equal deleted inserted replaced
760:5f55da80009b 761:43e017ec7958
     8 !
     8 !
     9 
     9 
    10 
    10 
    11 !JavaMethodRef2 methodsFor:'private - resolving'!
    11 !JavaMethodRef2 methodsFor:'private - resolving'!
    12 
    12 
       
    13 findResolvedStaticValue
       
    14   valueCache := JavaResolver uniqueInstance 
       
    15                 resolveStaticMethodIndentifiedByRef: self.
       
    16 
       
    17     "Created: / 28-04-2011 / 22:45:53 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
       
    18 !
       
    19 
    13 findResolvedValue
    20 findResolvedValue
    14     "Resolve reference and set valueCache and isResolved."
    21     "Resolve reference and set valueCache."
       
    22     
       
    23     valueCache := JavaResolver uniqueInstance 
       
    24                     resolveMethodIndentifiedByRef: self.
    15 
    25 
    16     ^ self shouldImplement
    26     "Modified: / 11-04-2011 / 19:45:14 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
       
    27 ! !
       
    28 
       
    29 !JavaMethodRef2 methodsFor:'queries'!
       
    30 
       
    31 isJavaMethodRef
       
    32 ^ true.
       
    33 
       
    34     "Created: / 11-04-2011 / 19:56:35 / Marcel Hlopko <hlopkmar@fel.cvut.cz>"
    17 ! !
    35 ! !
    18 
    36 
    19 !JavaMethodRef2 class methodsFor:'documentation'!
    37 !JavaMethodRef2 class methodsFor:'documentation'!
    20 
    38 
    21 version_SVN
    39 version_SVN
    22     ^ '$Id$'
    40     ^ '$Id$'
    23 ! !
    41 ! !
    24 
    42 
       
    43