Importing is done like "import myOtherClass;" at the of your file. for example, to use the java applet class (this is from the java library) you would have:
import java.applet.Applet;
public class HelloWorldApplet
{
...
...
}
For classes that you made, just make sure those classes...