📄 cityform.java
字号:
package xian.bin.city;import org.apache.struts.action.*;import java.util.*;import javax.servlet.http.*;public class CityForm extends ActionForm { private String city; private Collection shengs; private int cno; private int corder; private int sheng; private int cid; private java.util.Collection citys; public String getCity() { return city; } public void setCity(String city) { this.city = city; } public int getCno() { return cno; } public void setCno(int cno) { this.cno = cno; } public int getCorder() { return corder; } public void setCorder(int corder) { this.corder = corder; } public int getSheng() { return sheng; } public void setSheng(int sheng) { this.sheng = sheng; } public Collection getShengs() { return shengs; } public void setShengs(Collection shengs) { this.shengs = shengs; } public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { /**@todo: finish this method, this is just the skeleton.*/ return null; } public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) { } public int getCid() { return cid; } public void setCid(int cid) { this.cid = cid; } public java.util.Collection getCitys() { return citys; } public void setCitys(java.util.Collection citys) { this.citys = citys; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -