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