📄 loginform.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-03-2005 * * XDoclet definition: * * @struts:form name="loginForm" */public class LoginForm extends ValidatorForm { /** password property */ private String password; /** user property */ private String cust_name; /** * Returns the password. * * @return String */ public String getPassword() { return password; } /** * Set the password. * * @param password * The password to set */ public void setPassword(String password) { this.password = password; } public String getCust_name() { return cust_name; } public void setCust_name(String cust_name) { this.cust_name = cust_name; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -