Possible Duplicate:
Import package.* vs import package.SpecificType
I was wondering what is the difference between
import javax.swing.*
and
import javax.swing.SpecificLibaray
as the first method makes coding a little bit faster and easier?
Is there any performance differences between programs made with entire imported libraries and importing specific library?
What are the advantages and disadvantages of importing libraries the two ways mentioned above?
Regards