Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Mirah/SWTSnippets/Snippet1"

 
Line 1: Line 1:
 +
Compare with [http://dev.eclipse.org/viewcvs/viewvc.cgi/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/Snippet1.java?view=co the original].
 
<pre>/*******************************************************************************
 
<pre>/*******************************************************************************
 
  * Copyright (c) 2000, 2011 IBM Corporation and others.
 
  * Copyright (c) 2000, 2011 IBM Corporation and others.

Latest revision as of 12:22, 27 March 2011

Compare with the original.

/*******************************************************************************
 * 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 SWT example snippets ported to Mirah, see
 * http://wiki.eclipse.org/Mirah/SWTSnippets
 */
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