📄 shortuserinfo.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 + -