📄 groupform.java
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xslpackage com.example.web.actionform;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;/** * MyEclipse Struts * Creation date: 01-30-2007 * * XDoclet definition: * @struts.form name="groupForm" */public class GroupForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** groupId property */ private String groupId; /** memo property */ private String memo; /** printNum property */ private String printNum; /** content property */ private String content; /** unitId property */ private String unitId; /** groupName property */ private String groupName; /** dwType property */ private String dwType; // --------------------------------------------------------- Methods /** * Method validate * @param mapping * @param request * @return ActionErrors */ public ActionErrors validate( ActionMapping mapping, HttpServletRequest request) { // TODO Auto-generated method stub return null; } /** * Method reset * @param mapping * @param request */ public void reset(ActionMapping mapping, HttpServletRequest request) { // TODO Auto-generated method stub } /** * Returns the groupId. * @return String */ public String getGroupId() { return groupId; } /** * Set the groupId. * @param groupId The groupId to set */ public void setGroupId(String groupId) { this.groupId = groupId; } /** * Returns the memo. * @return String */ public String getMemo() { return memo; } /** * Set the memo. * @param memo The memo to set */ public void setMemo(String memo) { this.memo = memo; } /** * Returns the printNum. * @return String */ public String getPrintNum() { return printNum; } /** * Set the printNum. * @param printNum The printNum to set */ public void setPrintNum(String printNum) { this.printNum = printNum; } /** * Returns the content. * @return String */ public String getContent() { return content; } /** * Set the content. * @param content The content to set */ public void setContent(String content) { this.content = content; } /** * Returns the unitId. * @return String */ public String getUnitId() { return unitId; } /** * Set the unitId. * @param unitId The unitId to set */ public void setUnitId(String unitId) { this.unitId = unitId; } /** * Returns the groupName. * @return String */ public String getGroupName() { return groupName; } /** * Set the groupName. * @param groupName The groupName to set */ public void setGroupName(String groupName) { this.groupName = groupName; } public void setDwType(String dwType){ this.dwType = dwType; } public String getDwType(){ return dwType; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -