Package net.solosky.maplefetion.event.notify

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


    Buddy   from  = context.getFetionStore().getBuddyByUri(notify.getFrom());
    ChatDialogProxy chatDialogProxy = this.context.getChatDialogProxyFactoy().create(from);
    if("nudge".equals(state)){
      this.tryFireNotifyEvent(new ChatNudgeEvent(chatDialogProxy));
    }else if("input".equals(state)){
      this.tryFireNotifyEvent(new ChatInputEvent(chatDialogProxy));
    }else{
      logger.warn("unknown dialog info notify.\n\n"+notify.toSendString());
    }
  }
View Full Code Here


        ImageVerifyEvent e10 = (ImageVerifyEvent) event;
        this.imageVerify(e10.getVerifyImage(), e10.getVerifyReason(), e10.getVerifyTips(), e10);
        break;
       
      case CHAT_INPUT:
        ChatInputEvent e11 = (ChatInputEvent) event;
        this.chatInput(e11.getChatDialogProxy());
        break;
       
      case CHAT_NUDGE:
        ChatNudgeEvent e12 = (ChatNudgeEvent) event;
        this.chatNugde(e12.getChatDialogProxy());
View Full Code Here

TOP

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

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.