It is much more convenient and cleaner to use a single statement like
import java.awt.*;
than to import a bunch of individual classes
Most places I've worked that use any significant amount of Java make explicit imports part of the coding standard. I sometimes still use * for quick prototyping and then expand the import lists (some IDEs will do this for you as well) when productizing the code.