/* * Proj1UI.java * * Created on October 9, 2002, 11:09 PM */ /** * Test driver for Project 1 * This one invokes a GUI * * Replace the "TrivialInvestigator" with your own * classes which implement the IDateInvestigator interface * * You'll be asked to turn this in this class (modified) * * @author dickey */ /** Create windows for testing date investigators. * A user can type in a date, and see the result. * * Create one window for each of your date investigators (two are required). */ public class Proj1Tester { public static void main(String [] args) { System.out.println("Tester starting"); //create a window Proj1GUI frame = new Proj1GUI(); TrivialInvestigator trivialDI = new TrivialInvestigator(); frame.buildUI(trivialDI); System.out.println("main ends."); } //end main } //end Proj1Tester