/* * Created on Apr 7, 2005 */ package WordPro2Controller; /** Kick off the execution of the Word Processor. * You may change this class, though you shouldn't need to except to pick * a more personal picture. * It might make a good basis for tests. In any case, * be prepared to hand it in. */ public class WordProStarter { public static void main(String[] args) { String[] defaultDictionary = new String[] {"cat", "dog"}; String defaultDocument = "Call me Ishmael."; String pictureLocation = "http://www.cs.washington.edu/education/courses/cse373/05sp/pictures/FromStaff/2005_03_28%20CSE373/164-6427_IMG.JPG"; new WordProFrame(defaultDictionary, defaultDocument, pictureLocation); } }