SWTEventHandlingDisplay.java Source code

Java tutorial

Introduction

Here is the source code for SWTEventHandlingDisplay.java

Source

import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class SWTEventHandlingDisplay {

    public static void main(String[] args) {
        Display display = new Display();
        Shell shell = new Shell(display);
        shell.setText("Hello, world!");
        shell.open();

        while (!shell.isDisposed()) { // Event loop.
            if (!display.readAndDispatch())
                display.sleep();
        }
        display.dispose();
    }

}