Package net.solosky.maplefetion.event.notify

Examples of net.solosky.maplefetion.event.notify.SystemMessageEvent


     * 系统消息
     */
    private void systemMessageReceived(SipcNotify notify)
    {
      logger.debug("Recived a system message:"+notify.getBody().toSendString());
      this.tryFireNotifyEvent(new SystemMessageEvent(notify.getBody().toSendString()));
    }
View Full Code Here


        LoginStateEvent e7 = (LoginStateEvent) event;
        this.loginStateChanged(e7.getLoginState());
        break;
       
      case SYSTEM_MESSAGE:
        SystemMessageEvent e8 = (SystemMessageEvent) event;
        this.systemMessageRecived(e8.getSystemMessage());
        break;
       
      case INVITE_RECEIVED:
        InviteReceivedEvent e9 = (InviteReceivedEvent) event;
        this.inviteReceived(e9.getChatDialogProxy());
View Full Code Here

TOP

Related Classes of net.solosky.maplefetion.event.notify.SystemMessageEvent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.