The * in java.awt.* does not mean give me everything in that directory and all directories below it. It means give me all the classes in that directory. If you need the classes from the event directory then you must specify java.awt.event.*. Remember that you are importing a package. The event classes are not in the package called java.awt, they are in the package named java.awt.event.
[This message has been edited by Tom P (edited May 27, 2000).]