Eclipse/SWT
import org.eclipse.swt.widgets.*; public class HelloSwtWindow { /** * @param args */ public static void main(String[] args) { Display display = new Display(); Shell shell = new Shell(display); shell.setText("Hello SWT"); shell.setSize(400, 300); shell.open(); while ( !shell.isDisposed() ) { if ( !display.readAndDispatch() ) { display.sleep(); } } display.dispose(); } } |
Your mind understands what you have been taught; your heart, what is true. |