FormComp.java
import org.kwis.msp.lcdui.Jlet;
import org.kwis.msp.lcdui.JletStateChangeException;
import org.kwis.msp.lwc.FormComponent;
import org.kwis.msp.lwc.LabelComponent;
import org.kwis.msp.lwc.ShellComponent;
public class FormComp extends Jlet {
protected void startApp(String[] arg0) {
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 arg0) throws JletStateChangeException {}
}