Bug 24010 - IType::resolveType returns null for inner types
Summary: IType::resolveType returns null for inner types
Status: VERIFIED FIXED
Alias: None
Product: JDT
Classification: Eclipse Project
Component: Core (show other bugs)
Version: 2.0   Edit
Hardware: PC Windows 2000
: P3 normal (vote)
Target Milestone: 2.1 M3   Edit
Assignee: David Audel CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 23699
  Show dependency tree
 
Reported: 2002-09-24 05:47 EDT by Adam Kiezun CLA
Modified: 2002-11-13 05:45 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Adam Kiezun CLA 2002-09-24 05:47:54 EDT
2.1 M1
(no secondary types this time)
A.java
package p;
public class A {
	class Inner {
	  public int amount(){ return 1;}
	}
}

B.java
package p;
public class B {
	B(int t, A.Inner a){
		a.amount();
	}
}


IType::resolveType("A.Inner") called on B returns null
Comment 1 David Audel CLA 2002-11-07 04:20:10 EST
Fixed.
Comment 2 David Audel CLA 2002-11-13 05:45:52 EST
Verified.