Possible Duplicate:
Why is using a wild card with a Java import statement bad?
Right now I'm using a lot of java.util packages:
import java.util.Calendar;
import java.util.logging.ConsoleHandler;
import java.util.logging.Level;
import java.util.logging.LogRecord;
import java.util.logging.Logger;
Would it be more efficient to just do:
import java.util.*;
What are the performance/efficiency costs of this? Does it even matter? Please excuse my ignorance on the subject.
Also, this is just a shot in the dark but is there a way to import packages for a whole project? So that I don't need to re-import them on a per-class basis? This is my first big Java project so I'm still learning the more enterprise side of things.