Java(tm) Developers Kit
In terms of what's safe to use, the java.* classes represent the Java Applet API, which will be documented by us, will be upwardly compatible, and will be supported by all Java-enabled browsers, including Netscape.
For 1.0, however, the only events that an AWT program can filter are keyboard events. Future versions of the JDK will allow the AWT to filter all events.
Note also that if an applet's TextFields don't seem to be getting any keyboard input, it's because the applet is incorrectly written to return "true" from it's handleEvent() method. This causes the event not to be sent to the actual TextField.
Java Developers Kit