Bug 6779

Summary: searchDeclarationsOfReferencedTyped - missing exception types
Product: [Eclipse Project] JDT Reporter: Adam Kiezun <akiezun>
Component: CoreAssignee: Jerome Lanneluc <jerome_lanneluc>
Status: RESOLVED FIXED QA Contact:
Severity: normal    
Priority: P3    
Version: 2.0   
Target Milestone: 2.0 M2   
Hardware: PC   
OS: Windows 2000   
Whiteboard:

Description Adam Kiezun CLA 2001-12-11 05:40:42 EST
package p;
import java.rmi.AccessException;
class B{
 private void fd() throws AccessException{
 }
}

use searchDeclarationsOfReferencedTyped - AccessException is missing from the 
list
Comment 1 Jerome Lanneluc CLA 2001-12-18 13:36:26 EST
The binding for the thrown exception was not set, thus the type reference was 
inaccurate, thus its declaration could not be found.
Changed AbstractMethodDeclaration.resolve(ClassScope) to position the bindings 
of the thrownExceptions.