package jsetool.gui; import java.awt.BorderLayout; import javax.swing.JApplet; /** * @author Mike Lawson * * @since Nov 12, 2004 * * The JSEToolApplet class display the tool in an Applet. * * */ public class JSEToolApplet extends JApplet { public void start() { getContentPane().add (new JSEToolMainPane(), BorderLayout.CENTER); } }