// blah.java // // Mark F. Hulber // May 1996 // // blah implements an applet wrapper for a standalone java application. In // this case it is used to initialize the CG Drawing Board. Specifically, // it is initializing the class Events. // import java.applet.*; import java.awt.*; public class blah extends Applet { private Events cg; public void init(){ cg = new Events("CG Drawing Board (1.0)"); cg.pack(); cg.show(); } }