Package org.eclipse.ecf.presence.im

Examples of org.eclipse.ecf.presence.im.TypingMessageEvent


  private void fireTypingMessageEvent(ID fromID) {
    synchronized (messageListeners) {
      for (int i = 0; i < messageListeners.size(); i++) {
        ((IIMMessageListener) messageListeners.get(i))
            .handleMessageEvent(new TypingMessageEvent(fromID,
                new TypingMessage(fromID, true, null)));
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.presence.im.TypingMessageEvent

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.