ShellCompo.java
import org.kwis.msp.lcdui.*;
import org.kwis.msp.lwc.*;
public class ShellCompo extends Jlet {
protected void startApp(String args[]) {
ShellComponent test = new ShellComponent();
test.setTitle(new LabelComponent("제목 컴포넌트"));
test.addComponent(new ButtonComponent("작업 컴포넌트", null));
test.setCommand(new ButtonComponent("커맨드 컴포넌트", null), false);
test.show();
}
protected void pauseApp(){}
protected void resumeApp(){}
protected void destroyApp(boolean b){}
}