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

📄 getuseridresponse.java

📁 Java游戏高级编程!!很不错的!!!Java游戏高级编程!!很不错的
💻 JAVA
字号:
     package com.croftsoft.apps.chat.response;     import com.croftsoft.core.lang.NullArgumentException;     import com.croftsoft.apps.chat.user.UserId;     /*********************************************************************     * Response to a GetUserIdRequest.     *     * @version     *   2003-06-07     * @since     *   2003-06-07     * @author     *   <a href="http://www.croftsoft.com/">David Wallace Croft</a>     *********************************************************************/     public final class  GetUserIdResponse       extends AbstractResponse     //////////////////////////////////////////////////////////////////////     //////////////////////////////////////////////////////////////////////     {     private static final long  serialVersionUID = 0L;     //     private final UserId   userId;     private final boolean  usernameBad;     private final boolean  passwordBad;     //////////////////////////////////////////////////////////////////////     //////////////////////////////////////////////////////////////////////     public  GetUserIdResponse (       boolean  denied,       UserId   userId,       boolean  usernameBad,       boolean  passwordBad )     //////////////////////////////////////////////////////////////////////     {       super ( denied );       this.userId      = userId;       this.usernameBad = usernameBad;       this.passwordBad = passwordBad;     }     public  GetUserIdResponse ( UserId  userId )     //////////////////////////////////////////////////////////////////////     {       this ( false, userId, false, false );       NullArgumentException.check ( userId );     }     //////////////////////////////////////////////////////////////////////     //////////////////////////////////////////////////////////////////////     public UserId   getUserId     ( ) { return userId;      }     public boolean  isUsernameBad ( ) { return usernameBad; }     public boolean  isPasswordBad ( ) { return passwordBad; }     //////////////////////////////////////////////////////////////////////     //////////////////////////////////////////////////////////////////////     }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -