검색결과 리스트
전체 글에 해당되는 글 238건
- 2009.03.12 JAVA
글
JAVA
프로그래밍
2009. 3. 12. 21:34
import org.kwis.msp.lcdui.*;
import org.kwis.msp.lwc.*;
public class ShellandForm extends Jlet{
protected void startApp(String args[]){
ShellComponent shell = new ShellComponent();
FormComponent form = new FormComponent();
form.addComponent(new LabelComponent("위피 프로젝트"));
form.addComponent(new LabelComponent("라벨 컴포넌트"));
shell.addComponent(form);
shell.show();
}
protected void pauseApp(){}
protected void resumeApp(){}
protected void destroyApp(boolean b){}
}