📄 vendoraddform.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-04-2006 * * XDoclet definition: * * @struts.form name="vendorAddForm" */public class VendorAddForm extends ActionForm { // --------------------------------------------------------- Instance // Variables /** * */ private static final long serialVersionUID = 2157302177991822209L; /** vendorName property */ private String vendorName; /** vendorContactPerson property */ private String vendorContactPerson; /** vendorFax property */ private String vendorFax; /** vendorPhone property */ private String vendorPhone; /** vendorAddress property */ private String vendorAddress; // --------------------------------------------------------- Methods /** * 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 vendorContactPerson. * * @return String */ public String getVendorContactPerson() { return vendorContactPerson; } /** * Set the vendorContactPerson. * * @param vendorContactPerson * The vendorContactPerson to set */ public void setVendorContactPerson(String vendorContactPerson) { this.vendorContactPerson = vendorContactPerson; } /** * 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 + -