blob: 9126eaa3be5a704a8a6a46e088eb882e708e7cf9 [file] [log] [blame]
package org.eclipse.swt.examples.helloworld;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved
*/
import org.eclipse.swt.widgets.*;
/*
* This example demonstrates the minimum amount of code required to open an SWT Shell
* and process the events.
*/
public class HelloWorld1 {
public static void main (String [] args) {
Display display = new Display ();
Shell shell = new Shell (display);
shell.open ();
while (!shell.isDisposed ()) {
if (!display.readAndDispatch ()) display.sleep ();
}
display.dispose ();
}
}