⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 billform.java

📁 本人制作的运用Struts技术的联系项目 员工管理系统
💻 JAVA
字号:
//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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -