| Summary: | [quick fix] Allow to apply "import missing type" to several files | ||
|---|---|---|---|
| Product: | [Eclipse Project] JDT | Reporter: | Aaron Digulla <digulla> |
| Component: | UI | Assignee: | JDT-UI-Inbox <jdt-ui-inbox> |
| Status: | ASSIGNED --- | QA Contact: | |
| Severity: | enhancement | ||
| Priority: | P4 | CC: | deepakazad, markus.kell.r |
| Version: | 3.7 | ||
| Target Milestone: | --- | ||
| Hardware: | All | ||
| OS: | All | ||
| Whiteboard: | |||
|
Description
Aaron Digulla
Note that you can select multiple packages or projects and invoke 'Source > Organize Imports' (Ctrl+Shift+O) to fix all import issues in one go. In general, I also recommend 'Organize Imports'.
But I see that a multi-fix would also be helpful in cases where the unqualified name is ambiguous, e.g. here:
class E {
List i;
List i2;
}
|