[SWT] 기본적인 Hello Window
Computer_IT/JAVA2007. 8. 13. 10:40
반응형
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class HelloSwtWindow {
public static void main(String[] args) {
Display display = new Display();
Shell shell = new Shell(display);
shell.setText("My SWT window");
shell.open();
while(!shell.isDisposed())
{
if(!display.readAndDispatch())
{
display.sleep();
}
}
display.dispose();
}
}
invalid-file
다운로드
실행결과
반응형
'Computer_IT > JAVA' 카테고리의 다른 글
Servlet to Applet (Echo) Example (0) | 2007.11.23 |
---|---|
Eclipse - JAD Pluggin (0) | 2007.11.19 |
[java5] Calendar Example - 년 월 일 시 분 초 (0) | 2006.09.28 |
[java] 인수로 주어진 파일에 대한 정보 출력 (0) | 2006.09.27 |
[JAVA] APPLET - ButtonEvent (0) | 2006.09.18 |