Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Mirah/SWTSnippets/Snippet1

< Mirah‎ | SWTSnippets
Revision as of 00:12, 27 March 2011 by Unnamed Poltroon (Talk) (New page: <pre>/******************************************************************************* * Copyright (c) 2000, 2011 IBM Corporation and others. * All rights reserved. This program and the a...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
/*******************************************************************************
 * Copyright (c) 2000, 2011 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

/* 
 * example snippet: Hello World
 *
 * For a list of all SWT example snippets see
 * http://www.eclipse.org/swt/snippets/
 */
import org.eclipse.swt.widgets.*

display = Display.new
shell = Shell.new display
shell.open
while !shell.isDisposed
	if !display.readAndDispatch
		display.sleep
	end
end
display.dispose

Back to the top