shortuserinfo.java
来自「一个类似QQ的在线通讯聊天软件原码,适合初学者参考学习。」· Java 代码 · 共 53 行
JAVA
53 行
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 + =
减小字号Ctrl + -
显示快捷键?