FileDocCategorySizeDatePackage
TinyApplet.javaAPI DocExample265Sun Dec 27 15:20:28 GMT 1998None

TinyApplet.java

import java.awt.*;
import java.applet.*;

/** Simple demo of creating a program with a button. */
public class TinyApplet extends Applet {

	/** The init method is used to set up the GUI */
	public void init() {
		add(new Button("A button")); // no action yet
	}
}