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

%IMPORT%

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

    public void started(int launchType) {
        /*
         * The program of StarApplication is written here.
         */
        Display.setCurrent((Frame)new MainPanel());
    }
}

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

    %FIELD%
    MainPanel() {
        setTitle("Star");

        %INIT_PROC%
    }

    %ABSTRACT_METHOD%
}

