It is much more convenient and cleaner to use a single statement like
import java.awt.*;
than to import a bunch of individual classes
I prefer specific imports, because it allows me to see all the external references used in the file without looking at the whole file. (Yes, I know it won't necessarily show fully qualified references. But I avoid them whenever possible.)