검색결과 리스트
전체 글에 해당되는 글 238건
- 2009.04.03 JAVA
글
JAVA
프로그래밍
2009. 4. 3. 20:34
import org.kwis.msp.lcdui.*;
import org.kwis.msp.lwc.*;
public class AnnunciatorEx extends Jlet {
AnnunciatorComponent ann = new AnnunciatorComponent(false);
ShellComponent shell = new ShellComponent();
FormComponent form = new FormComponent();
ButtonComponent button1 = new ButtonComponent("실행하기",null);
ButtonComponent button2 = new ButtonComponent("취소하기",null);
protected void startApp(String args[]) {
ann.show();
form.addComponent(button1);
form.addComponent(button2);
form.setGab(10);
shell.addComponent(form);
shell.show();
}
protected void destroyApp(boolean b){}
}