user.java
来自「这是个用struts开发的电话卡销售与管理系统.具有网络设备监控能力」· Java 代码 · 共 104 行
JAVA
104 行
//Created by MyEclipse Struts// XSL source (default): platform:/plugin/com.genuitec.eclipse.cross.easystruts.eclipse_3.9.210/xslt/JavaClass.xslpackage com.phone.struts.db;/** * MyEclipse Struts * Creation date: 12-07-2005 * * XDoclet definition: * @struts:form name="user" */public class User { /** isNotLogin property */ boolean isNotLogin; /** isNotType property */ boolean isNotType; public User(){ isNotLogin=false; isNotType=false; } // --------------------------------------------------------- Instance Variables /** loginName property */ private String loginName; /** userPassword property */ private String userPassword; // --------------------------------------------------------- Methods /** * Returns the loginName. * @return String */ public String getLoginName() { return loginName; } /** * Set the loginName. * @param loginName The loginName to set */ public void setLoginName(String loginName) { this.loginName = loginName; } /** * Returns the userPassword. * @return String */ public String getUserPassword() { return userPassword; } /** * Set the userPassword. * @param userPassword The userPassword to set */ public void setUserPassword(String userPassword) { this.userPassword = userPassword; } /** * Returns the isNotLogin. * @return boolean */ public boolean getIsNotLogin() { return isNotLogin; } /** * Set the isNotLogin. * @param isNotLogin The isNotLogin to set */ public void setIsNotLogin(boolean isNotLogin) { this.isNotLogin = isNotLogin; } /** * Returns the isNotType. * @return boolean */ public boolean getIsNotType() { return isNotType; } /** * Set the isNotType. * @param isNotType The isNotType to set */ public void setIsNotType(boolean isNotType) { this.isNotType = isNotType; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?