Package

Source Code of Driver

/**
* Driver for Application. Calls the GUI method to start application
*
* @author Matthew Fetzer
*/
import java.io.IOException;
import GUI.GUI;

public class Driver
{
  public static void main( String[] args ) throws IOException
  {
     new GUI();   
  }
}
TOP

Related Classes of Driver

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.