/** @author Scott Marshall @author University of Glasgow, MSc IT Project 2001 @author Building an OnLine Course in Computing Fundamentals frameMaker Class. */ package ukacgla_TruthTable; import ukacgla_ATT.*; import javax.swing.*; public class Ex01_frameMaker extends frameMaker{ public Ex01_frameMaker(JApplet applet){ super(applet); } /** From parent class, makeGUI() must instantiate an extended concrete TableUI class through this method makeGUI() instantiates a concrete implementation via an Ex01_TableUI table object. */ public void makeGUI(){ Ex01_TableUI table = new Ex01_TableUI(this); super.show(); } }//ends class