Possible Duplicate:
why import javax.swing.* why not import java.swing.*
This may seem as a stupid question, but why was the Java Swing Framework(a.k.a Java Foundation Classes) put in the javax package instead of the java package like the Abstract Window Toolkit?
import javax.swing.*
instead of
import java.swing.*
What is the difference between java and javax?