?? loginform.java
字號:
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_4.1.1/xslt/JavaClass.xslpackage test.form;import org.apache.struts.action.ActionForm;/** * MyEclipse Struts * Creation date: 06-09-2007 * * XDoclet definition: * @struts.form name="loginForm" */public class LoginForm extends ActionForm { // --------------------------------------------------------- Instance Variables /** * */ private static final long serialVersionUID = 1L; /** 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 + -