Is there a way Eclipse will auto import classes from java package as java.util.List
without the need to choose it explicitly in every class?
(even without Ctrl + Shift + O)
When I write List and eclipse auto import java.util.List
instead of suggesting irrelevant List as org.apache.xmlbeans.impl.xb.xsdschema.ListDocument.List
I know I can exclude by Type Filters, but I just want specific objects as List to be automatically imported.