Since some developers like looking through a bunch of the imports to see what the class depends on, 'hiding' it by not listing it as an import may hide dependencies from some authors. (Plus, if an Eclipse user does 'Organise Imports' then it may get taken away accidentally ...)
I don't know if we need to do an official vote or not, but the feedback seems to suggest that the import * shouldn't be used, and I've updated the Wiki ApacheJ2EE/CodingStandards page to reflect this.
Aex.
On Wednesday, Aug 13, 2003, at 18:22 Europe/London, Noel J. Bergman wrote:
Alex Blewitt wrote:Has anyone got any preferences between using:
import java.util.*
or
import java.util.Vector import java.util.Enumeration
Personally, in most cases I find that the actual pattern is something like:
import java.util.Collection;
Collection mywhatever;
mywhatever = new java.util.SOME_COLLECTION_TYPE(...);
I do not bother to import the specialized class used only once. I do import
the base type that is part of the interface.
--- Noel
