Package org.eclipse.ecf.presence.chatroom

Examples of org.eclipse.ecf.presence.chatroom.IChatRoomInvitationListener


    List toNotify = null;
    synchronized (invitationListeners) {
      toNotify = new ArrayList(invitationListeners);
    }
    for (final Iterator i = toNotify.iterator(); i.hasNext();) {
      final IChatRoomInvitationListener l = (IChatRoomInvitationListener) i.next();
      l.handleInvitationReceived(roomID, fromID, subject, body);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.presence.chatroom.IChatRoomInvitationListener

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.