import java.awt.*;
import javax.swing.*;        

/**
 *  A simple Swing application that creates and displays a
 *  JCircle element.GUI demo
 */
public class GUIdemoApplication {
    /** 
     *  This is the entry point for the application
     */
    public static void main(String[] args) {
        // Schedule a job for the event-dispatching thread:
        // creating and showing this application's GUI.
	final GUIdemo GUI = new GUIdemo();

        javax.swing.SwingUtilities.invokeLater(new Runnable() {
		public void run() {
		    GUI.createAndShowGUI();
		}
	    });
    }
}

