Bug 68010

Summary: [1.5] Return type of bridge method is not correct inside outliner
Product: [Eclipse Project] JDT Reporter: David Audel <david_audel>
Component: CoreAssignee: Jerome Lanneluc <jerome_lanneluc>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 3.0   
Target Milestone: 3.1 M1   
Hardware: PC   
OS: Windows XP   
Whiteboard:

Description David Audel CLA 2004-06-21 11:19:26 EDT
use build 3.0RC3

1) change preference to show return type inside outliner 
   Preferences>Java>Appearance>how method return type 
2) create a new java project that use a 1.5 jre
3) open type java.io.PrintWriter

Inside outliner you can see three methods "Appendable append(char)".
These methods are:
  method - PrintWriter append(char)
  bridge method - Writer append(char)
  bridge method - Appendable append(char)



The problem come from binary method handle (BinaryNemthod). The occurrence 
count is the same for these three methods.
Comment 1 Jerome Lanneluc CLA 2004-07-06 16:31:08 EDT
Fixed ClassFileInfo.generateMethodInfos(...) to increase the occurence count 
of duplicate methods.