Thursday, September 2, 2010
Assignment #1 Hello World
/*
Assignment 1 HelloWorldSwing
*/
/*
*HelloWorldSwing.java required no other files.
*/
import javax.swing.*;
public class HelloWorldSwing {
/**
*Create the GUI and show it.
*/
private static void createAndShowGUI () {
//Create and set up the window.
JFrame frame = new JFrame ("HelloWorldSwing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//Add the ubiquitous " Hello World" label.
JLabel label = new JLabel("Hello Gabriel");
frame.getContentPane().add(label);
//Display the window.
frame.pack();
frame.setVisible(true);
}
public static void main (String[] args) {
//Schedule a job for the event-displacing thread:
//creating and showing this application's GUI.
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGUI ();
}
});
}
}
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment