📄 ordercheckform.java
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_3.9.210/xslt/JavaClass.xslpackage com.ascent.struts.form;import org.apache.struts.validator.ValidatorForm;/** * MyEclipse Struts * Creation date: 09-02-2005 * * XDoclet definition: * @struts:form name="ordercheckForm" */public class OrdercheckForm extends ValidatorForm { // --------------------------------------------------------- Instance Variables /** telephone property */ private String telephone; /** customerName property */ private String customerName; /** email property */ private String email; /** post property */ private String post; private String address; // --------------------------------------------------------- Methods /** * Returns the telephone. * @return String */ public String getTelephone() { return telephone; } /** * Set the telephone. * @param telephone The telephone to set */ public void setTelephone(String telephone) { this.telephone = telephone; } /** * Returns the telephone. * @return String */ public String getAddress() { return address; } /** * Set the telephone. * @param telephone The telephone to set */ public void setAddress(String address) { this.address = address; } /** * Returns the customerName. * @return String */ public String getCustomerName() { return customerName; } /** * Set the customerName. * @param customerName The customerName to set */ public void setCustomerName(String customerName) { this.customerName = customerName; } /** * Returns the email. * @return String */ public String getEmail() { return email; } /** * Set the email. * @param email The email to set */ public void setEmail(String email) { this.email = email; } /** * Returns the post. * @return String */ public String getPost() { return post; } /** * Set the post. * @param post The post to set */ public void setPost(String post) { this.post = post; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -