Package org.eclipse.ecf.presence.chatroom

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


    List notify = null;
    synchronized (chatRoomAdminListeners) {
      notify = new ArrayList(chatRoomAdminListeners);
    }
    for (final Iterator i = notify.iterator(); i.hasNext();) {
      final IChatRoomAdminListener l = (IChatRoomAdminListener) i.next();
      l.handleSubjectChange(containerHelper.createUserIDFromName(from), subject);
    }
  }
View Full Code Here

TOP

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

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.