Is it better to list each individual piece of a package you\'re going to need (see #1) or is it better to just import everything from a package (see #2)?
Import individually, it saves the compiler from having to look through each package for each class and therefore makes things run quicker.