import java.applet.*;
/** * An applet is a Java program that executes inside a web browser. * * Typically, a subclass of Applet (AppletSkeleton is one such subclass) will * define a method called paint in order to paint an appearance on screen. In * this minimal example, we do not define such a method. */ public class AppletSkeleton extends Applet {
} // end class AppletSkeleton