In eclipse if a class is used, and it's not imported, and there is only one class with that name...eclipse will automatically import it.
When there are two classes with the same name, eclipse will ask the user to select the desired one. This however is not desirable.
For example, I commonly use List and ArrayList. And each time I use them in a new class, I have to select java.util.ArrayList and java.util.List from eclipses menu. Because "List cannot be resolved to a type".
Is there some way to set java.util List and Arraylists as a default import?
For now, I created an eclipse template that triggers on the word 'List'...any ideas or improvements?
${:import(java.util.List,java.util.ArrayList)}
List<> list = new ArrayList<>();
java.util.Listorjava.awt.List. That's what the OP wants to avoid. – dogbane Feb 2 '11 at 8:44