new Shell(Display arg0) : Shell « org.eclipse.swt.widgets « Java by API






new Shell(Display arg0)

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

public class MainClass {


  public static void main(String[] a) {
    Display d = new Display();
    Shell s = new Shell(d);
    s.setSize(500, 500);
    s.open();
    while (!s.isDisposed()) {
      if (!d.readAndDispatch())
        d.sleep();
    }
    d.dispose();
  }
}

           
       








Related examples in the same category

1.new Shell(shell, SWT.APPLICATION_MODAL | SWT.DIALOG_TRIM) (Make shell a dialog)
2.new Shell(Display display, int style)
3.new Shell(Shell parent)
4.Shell: getClientArea()
5.Shell: getDisplay()
6.Shell: open()
7.Shell: setImage(Image img)
8.Shell: setMenuBar(Menu menu)
9.Shell: setRegion(Region reg)
10.Shell: setSize(int width, int height)