Examples of BuddyPresenceEvent


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

                        chatDialog.closeDialog();
                      }
                    }
                   
                    //通知监听器,好友状态已经改变
                    this.tryFireNotifyEvent(new BuddyPresenceEvent(buddy));
                  }
              }

              //刷新数据
              context.getFetionStore().flushBuddy(buddy);
View Full Code Here

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

        BuddyConfirmedEvent e3 = (BuddyConfirmedEvent) event;
        this.buddyConfirmed(e3.getBuddy(), e3.isAgreed());
        break;
       
      case BUDDY_PRESENCE:
        BuddyPresenceEvent e4 = (BuddyPresenceEvent) event;
        this.buddyPresenceChanged(e4.getBuddy());
        break;
       
      case CLIENT_STATE:
        ClientStateEvent e5 = (ClientStateEvent) event;
        this.clientStateChanged(e5.getClientState());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.