/** Scott Marshall MSc Project Three Input KMap Initiating Class. */ import ukacgla_KMap.*; import ukacgla_3inputKMap.*; import javax.swing.*; import java.applet.Applet; public class ThreeInputKMap extends JApplet { Ex05_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 Ex05_Frame constructor set up a 2 rows by 4 column K map, wih two additional rows for labels, and one additional column for labels. */ public void init() { super.init(); String[] columnNames = {"K Map", " ", " "," ", " "}; frame = new Ex05_Frame(this,4,5,columnNames); validate(); } public void start() { super.start(); } public void stop() { super.stop(); } }