Thursday, September 2, 2010

HelloWorldSwing - Assignment 1 - Tuesday, August 24, 2010




/*
Assignment 1 HelloworldSwing
*/
/*
*HellowWorldSwing.java required no other files.
*/
import javax.swing.*;
public class HelloWorldSwing {
/**
    * Create the GUI and show it.
    */
    private static void createAndShowGUI () {
        //Create and setup the window.
        JFrame frame = new JFrame ("HelloWorldSwing");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        //And the ubiquitous "Hellow World" label.
        JLabel label = new JLabel(" Hello World");
        frame.getContentPane().add(label);

        //Display the window.
        frame.pack();
        frame.setVisible(true);
        }

        public static void main (String[] args) {
        //Schedule a job for the event-dispatching thread;
        //creating and showing this application's GUI.
        javax.swing.SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                createAndShowGUI ();
                }
                });
                }
                }

No comments:

Post a Comment