doupdateform.java
来自「网上购物系统 管理员模块和用户模块」· Java 代码 · 共 77 行
JAVA
77 行
/*
* Generated by MyEclipse Struts
* Template path: templates/java/JavaClass.vtl
*/
package com.yourcompany.struts.form;
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-07-2009
*
* XDoclet definition:
* @struts.form name="doUpdateForm"
*/
public class DoUpdateForm extends ActionForm {
/*
* Generated fields
*/
/** num property */
private Integer num;
/** ID property */
private int ID;
/*
* Generated Methods
*/
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Returns the num.
* @return Integer
*/
public Integer getNum() {
return num;
}
/**
* Set the num.
* @param num The num to set
*/
public void setNum(Integer num) {
this.num = num;
}
/**
* Returns the ID.
* @return String
*/
public int getID() {
return ID;
}
/**
* Set the ID.
* @param ID The ID to set
*/
public void setID(int ID) {
this.ID = ID;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?