| Summary: | code resolve doesn't work on imports of inner types | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Martin Aeschlimann <martinae> |
| Component: | Core | Assignee: | JDT-Core-Inbox <jdt-core-inbox> |
| Status: | RESOLVED DUPLICATE | QA Contact: | |
| Severity: | normal | ||
| Priority: | P3 | ||
| Version: | 3.1 | ||
| Target Milestone: | --- | ||
| Hardware: | PC | ||
| OS: | Windows XP | ||
| Whiteboard: | |||
RC1 - create the two following clases - in B.java, select 'Inner' in the import and press F3. Nothing happens. // A.java package pack; public class A { public static class Inner { } } // B.java package pack; import pack.A.Inner; // select 'Inner' and do code resolve (F3) public class B { }