billform.java

来自「本人制作的运用Struts技术的联系项目 员工管理系统」· Java 代码 · 共 123 行

JAVA
123
字号
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xslpackage com.my.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: 08-04-2006 *  * XDoclet definition: *  * @struts.form name="billForm" */public class BillForm extends ActionForm {	// --------------------------------------------------------- Instance	// Variables	/**	 * 	 */	private static final long serialVersionUID = -7571165118249959057L;	/** vendorId property */	private String vendorName;	/** billdate property */	private String billdate;	/** billduedate property */	private String billduedate;	// --------------------------------------------------------- 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 vendorId.	 * 	 * @return String	 */	public String getVendorName() {		return vendorName;	}	/**	 * Set the vendorId.	 * 	 * @param vendorId	 *            The vendorId to set	 */	public void setVendorName(String vendorName) {		this.vendorName = vendorName;	}	/**	 * Returns the billdate.	 * 	 * @return String	 */	public String getBilldate() {		return billdate;	}	/**	 * Set the billdate.	 * 	 * @param billdate	 *            The billdate to set	 */	public void setBilldate(String billdate) {		this.billdate = billdate;	}	/**	 * Returns the billduedate.	 * 	 * @return String	 */	public String getBillduedate() {		return billduedate;	}	/**	 * Set the billduedate.	 * 	 * @param billduedate	 *            The billduedate to set	 */	public void setBillduedate(String billduedate) {		this.billduedate = billduedate;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?