Package net.solosky.maplefetion.client.dialog

Examples of net.solosky.maplefetion.client.dialog.LiveV1ChatDialog


      Buddy buddy = this.context.getFetionStore().getBuddyByUri(notify.getFrom());
      boolean isCorrect = false;
      if(buddy!=null) {
          ChatDialog dialog = this.context.getDialogFactory().findChatDialog(buddy);
          if(dialog!=null && dialog.getState()==DialogState.OPENNING && dialog instanceof LiveV1ChatDialog) {
          LiveV1ChatDialog cd = (LiveV1ChatDialog) dialog;
          cd.dialogOpened();
          isCorrect = true;
          }
      }
     
      if(!isCorrect) logger.warn("Incorrect ack Notify. Notify="+notify.toString());
View Full Code Here

TOP

Related Classes of net.solosky.maplefetion.client.dialog.LiveV1ChatDialog

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.