/*
 * {CLASSNAME}.java
 *
 * DATE : {DATE}
 */
import com.nttdocomo.ui.IApplication;
import com.nttdocomo.ui.Display;
import com.nttdocomo.ui.Panel;
import com.nttdocomo.ui.Frame;

%IMPORT%

/**
 * {CLASSNAME}
 *
 * @author NAME
 */
public class {CLASSNAME} extends IApplication {

    public void start() {
        /*
         * The program of IApplication is written here.
         */
        Display.setCurrent((Frame)new MainPanel());
    }
}

/**
 * MainPanel
 * 
 */
class MainPanel extends Panel %IMPLEMENTS%{

    %FIELD%
    MainPanel() {
        setTitle("Start IApplication");

        %INIT_PROC%
    }

    %ABSTRACT_METHOD%
}

