Examples of handleSubjectChange()


Examples of org.eclipse.ecf.presence.chatroom.IChatRoomAdminListener.handleSubjectChange()

    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);
    }
  }

  public void disconnect() {
    final ID groupID = getConnectedID();
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.