⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 user.java

📁 这是个用struts开发的电话卡销售与管理系统.具有网络设备监控能力
💻 JAVA
字号:
//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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -