/** Scott Marshall MSc Project Four Input KMap Initiating Class. */ import ukacgla_KMap.*; import ukacgla_4inputKMap.*; import javax.swing.*; import java.applet.Applet; public class FourInputKMap extends JApplet { Ex06_Frame frame; /** Both the KMap_Frame and the AbstractTableModel class need the column titles to be instantiated. To allow classes to be extended the columnNames are created at this point. The arguments passed to the Ex06_Frame constructor set up a 2 rows by 4 column K map, wih two additional rows for labels, and two additional column for labels. */ public void init() { super.init(); String[] columnNames = {"K Map", " ", " "," ", " "," "}; frame = new Ex06_Frame(this,6,6,columnNames); validate(); } public void start() { super.start(); } public void stop() { super.stop(); } }