import javax.swing.JApplet;

/**
 * This class is an applet that simply shows a RandomArtPanel.
 * It can be used on a web page by including the class files
 * RandomArtApplet.class and RandomArtPanel.class in the
 * same directory as the HTML source file for the web page and adding
 * an appropriate applet tag to the HTML file.  (It is also possible
 * to use a jar file containing the class files.  In that case,
 * an "archive" attribute must be added to the applet tag.)
 */
public class RandomArtApplet extends JApplet {

	public void init() {
		RandomArtPanel panel = new RandomArtPanel();
		setContentPane(panel);
	}

}
