When should you use a wildcard import?
I don't think there is a
Java Coding Guideline for this, but there are 2 different schools of thought on this issue. One prescribes to
always use wildcard import so that you don't have dozens of imports clattering your source code, and the other one prescribes to
never use wildcard import, so that you can always see which particular classes are used. Perhaps the right choice is somewhere in between.
Eugene.