ui
Class GUI

java.lang.Object
  extended by ui.GUI
All Implemented Interfaces:
java.lang.Runnable

public class GUI
extends java.lang.Object
implements java.lang.Runnable

The graphical user interface component of the software. This is responsible for creating and displaying the GUI you see on screen.


Constructor Summary
GUI()
           
 
Method Summary
static void main(java.lang.String[] args)
           
 void run()
          The method that initiates the entire operation of this class.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GUI

public GUI()
Method Detail

run

public void run()
The method that initiates the entire operation of this class. Required by the Runnable interface.

Specified by:
run in interface java.lang.Runnable

main

public static void main(java.lang.String[] args)