?? addtypeform.java
字號:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xslpackage com.news.struts.form;import java.util.List;import org.apache.struts.action.ActionForm;/** * MyEclipse Struts * Creation date: 07-14-2006 * * XDoclet definition: * @struts.form name="addtypeForm" */public class AddtypeForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** typedate property */ private String typeauthor; /** typetitle property */ private String newtypetitle; /** typelist property */ private List typelist; /** typedate property */ private String newtypedate; private String id; private String strPageBreak; // --------------------------------------------------------- Methods public String getStrPageBreak() { return strPageBreak; } public void setStrPageBreak(String strPageBreak) { this.strPageBreak = strPageBreak; } public String getId() { return id; } public void setId(String id) { this.id = id; } public String getNewtypedate() { return newtypedate; } /** * Set the newtypedate. * @param newtypedate The newtypedate to set */ public void setNewtypedate(String newtypedate) { this.newtypedate = newtypedate; } /** * Returns the newtypetitle. * @return String */ public String getNewtypetitle() { return newtypetitle; } /** * Set the newtypetitle. * @param newtypetitle The newtypetitle to set */ public void setNewtypetitle(String newtypetitle) { this.newtypetitle = newtypetitle; } public String getTypeauthor() { return typeauthor; } public void setTypeauthor(String typeauthor) { this.typeauthor = typeauthor; } public List getTypelist() { return typelist; } public void setTypelist(List typelist) { this.typelist = typelist; } public void add(Object obj){ typelist.add(obj); }}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -