import javax.swing.JApplet;

/**
 * This class is an applet that simply shows an ArtSubroutinesPanel.
 * It can be used on a web page by including all the class files 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.)
 * 
 * Note: The size of the applet should be about 510-by-445.
 */
public class ArtSubroutinesApplet extends JApplet {

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

}
