Examples of ChatNudgeEvent


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

    Element node = XMLHelper.find(root, "/is-composing/state");
    String  state = node.getText();
    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

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

        ChatInputEvent e11 = (ChatInputEvent) event;
        this.chatInput(e11.getChatDialogProxy());
        break;
       
      case CHAT_NUDGE:
        ChatNudgeEvent e12 = (ChatNudgeEvent) event;
        this.chatNugde(e12.getChatDialogProxy());
        break;
       
      default:;
       
       
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.