import org.eclipse.swt.widgets.*;
public class Fuzetu {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
// タイトル・サイズ指定
shell.setText("封絶!");
shell.setSize(200, 200);
shell.open();
while (!shell.isDisposed ()){
if (!display.readAndDispatch ()){
display.sleep ();
}
}
display.dispose ();
}
}