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

📄 shortuserinfo.java

📁 一个类似QQ的在线通讯聊天软件原码,适合初学者参考学习。
💻 JAVA
字号:
package openicq.net;/** * The <code>ShortUserInfo</code> interface contains short user informations * about a user. * @author Hansgeorg Schwibbe * @copyright 2004 */public interface ShortUserInfo{  /**   * Returns the authorisation flag   * @return the authorization flag (0 = authorization is required, 1 =   *         authorization is not required)   */  int getAuthFlag();  /**   * Returns the email.   * @return the email   */  String getEmail();  /**   * Returns the first name.   * @return the first name   */  String getFirstName();  /**   * Returns the last name.   * @return the last name   */  String getLastName();  /**   * Returns the nickname.   * @return the nickname   */  String getNickName();  /**   * Returns the requests success byte.   * @return the requests success byte   */  int getSuccessByte();  /**   * Returns the contact ID.   * @return the contact ID   */  String getUserID();}

⌨️ 快捷键说明

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