Skip to content

SWT Tutorial : Hello World Program

package com.deveshcodelab.examples.swt;

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


public class SWTSnippet01 {

	public static void main(String[] args) {

		Display display = new Display();
		Shell shell = new Shell(display);
		Label helloText = new Label(shell, SWT.CENTER);
		helloText.setText("Hello SWT!");
		helloText.pack();
		shell.pack();
		shell.open();
		while (!shell.isDisposed()) {
			if (!display.readAndDispatch())
				display.sleep();
		}
		display.dispose();

	}
}

Leave a Reply

Your email address will not be published. Required fields are marked *