📄 loginform.java
字号:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.0.0/xslt/JavaClass.xslpackage com.xxfb.struts.form;import org.apache.struts.validator.ValidatorForm;/** * MyEclipse Struts * Creation date: 01-07-2008 * * XDoclet definition: * @struts.form name="loginForm" *///登陆信息public class LoginForm extends ValidatorForm { // --------------------------------------------------------- Instance Variables /** password property */ private String password; /** name property */ private String name; // --------------------------------------------------------- Methods /** * 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; } /** * Returns the name. * @return String */ public String getName() { return name; } /** * Set the name. * @param name The name to set */ public void setName(String name) { this.name = name; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -