// Driver.java
// Driver for the 2D Graphics implementations of NFA class


/** Test the NFA class
 *
 *  @author <a href="mailto:bergmann@rowan.edu"> Seth Bergmann </a>
 *  @author <a href="mailto:gspyo@jersey.net"> Greg Safko </a>
 */
public class Driver
{  
public static void main (String [] args)
   { 	
   	NFA nfa = new NFA(); 		// NFA is a JFrame
	nfa.setVisible (true);
   }
}

