/* -------------------------------------------------------------------------- */ /* */ /* APRIORI-T ARM ALGORITHM DEMONSRATOR GUI */ /* Frans Coenen */ /* Sunday 27 May 2006 */ /* */ /* -------------------------------------------------------------------------- */ import javax.swing.JFrame; public class AprioriT_GUI_App { /* ------ FIELDS ------ */ // No fields /* ------ METHODS ------ */ /** Main method (to start the "ball rolling"). */ public static void main(String Args[]) { // Create data generator GUI model TotalSupportTree newAprioriT = new TotalSupportTree(); // Creat data generator GUI control module, set frame size and display AprioriTcontrol newAprioriTcontrol = new AprioriTcontrol(newAprioriT); newAprioriTcontrol.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); newAprioriTcontrol.setSize(700,700); newAprioriTcontrol.setVisible(true); } }