import org.eclipse.swt.widgets.*; class Program { public static void main(String args[]) { Display megjelenito = new Display(); Shell felulet = new Shell(megjelenito); felulet.setSize(300, 200); felulet.setText("Dialogs"); felulet.open(); Label cimke = new Label(felulet, 0); cimke.setText("Címke"); cimke.setBounds(20, 20, 50, 25); while (!felulet.isDisposed()) { if (!megjelenito.readAndDispatch()) megjelenito.sleep(); } megjelenito.dispose(); } }