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

📄 vendorupdateform.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 org.apache.struts.action.ActionForm;/** * MyEclipse Struts Creation date: 08-03-2006 *  * XDoclet definition: *  * @struts.form name="vendorUpdateForm" */public class VendorUpdateForm extends ActionForm {	// --------------------------------------------------------- Instance	// Variables	/**	 * 	 */	private static final long serialVersionUID = 5064605762836402315L;	/** contactPerson property */	private String vendorContactPerson;	/** vendorName property */	private String vendorName;	/** vendorFax property */	private String vendorFax;	/** vendorPhone property */	private String vendorPhone;	/** vendorAddress property */	private String vendorAddress;	private String vendorID;	// --------------------------------------------------------- Methods	public String getVendorID() {		return vendorID;	}	public void setVendorID(String vendorID) {		this.vendorID = vendorID;	}	/**	 * Returns the contactPerson.	 * 	 * @return String	 */	public String getVendorContactPerson() {		return vendorContactPerson;	}	/**	 * Set the contactPerson.	 * 	 * @param contactPerson	 *            The contactPerson to set	 */	public void setVendorContactPerson(String vendorContactPerson) {		this.vendorContactPerson = vendorContactPerson;	}	/**	 * Returns the vendorName.	 * 	 * @return String	 */	public String getVendorName() {		return vendorName;	}	/**	 * Set the vendorName.	 * 	 * @param vendorName	 *            The vendorName to set	 */	public void setVendorName(String vendorName) {		this.vendorName = vendorName;	}	/**	 * Returns the vendorFax.	 * 	 * @return String	 */	public String getVendorFax() {		return vendorFax;	}	/**	 * Set the vendorFax.	 * 	 * @param vendorFax	 *            The vendorFax to set	 */	public void setVendorFax(String vendorFax) {		this.vendorFax = vendorFax;	}	/**	 * Returns the vendorPhone.	 * 	 * @return String	 */	public String getVendorPhone() {		return vendorPhone;	}	/**	 * Set the vendorPhone.	 * 	 * @param vendorPhone	 *            The vendorPhone to set	 */	public void setVendorPhone(String vendorPhone) {		this.vendorPhone = vendorPhone;	}	/**	 * Returns the vendorAddress.	 * 	 * @return String	 */	public String getVendorAddress() {		return vendorAddress;	}	/**	 * Set the vendorAddress.	 * 	 * @param vendorAddress	 *            The vendorAddress to set	 */	public void setVendorAddress(String vendorAddress) {		this.vendorAddress = vendorAddress;	}}

⌨️ 快捷键说明

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