//   Author: Brian C. Hoffman
//     File: TemplateApplet.java
// Abstract: This is a standard template for creating Java applets. It was made 
//           for the June 2003 IMMT and E-Business conference.
//          
//  Revision History:      	Date (Due Date)	   Who	 Description
// -----------------------------------------------------------------------------
//		                    2/12/03            BCH	 Initial Release
//
import java.awt.*;
import javax.swing.*;

public class TemplateApplet extends JApplet
{
    // initialize the applet and create the GUI
    public void init()
    {
    }
    
    // draw graphics 
    public void paint(Graphics g)
    {
        super.paint(g);
    }
}
    


