Spring-MVCの散歩道 > SpringMVC の小径 > 第7歩 Spring-MVC 迷いの一歩 > データモデルバインド
|
package jp.dip.arimodoki.model; public interface PromenadeFormIf { String getMyname(); void setMyname(String myname); int getAge(); void setAge(int age); String getPref(); void setPref(String pref); String getPhone(); void setPhone(String phone); } |