Package org.eclipse.ecf.presence.chatroom

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


   * @see org.eclipse.ecf.presence.chatroom.IChatRoomContainer#getChatRoomAdminSender()
   */
  public IChatRoomAdminSender getChatRoomAdminSender() {
    synchronized (this) {
      if (chatRoomAdminSender == null) {
        chatRoomAdminSender = new IChatRoomAdminSender() {
          public void sendSubjectChange(String newsubject) throws ECFException {
            if (multiuserchat == null)
              throw new ECFException(Messages.XMPPChatRoomContainer_EXCEPTION_NOT_CONNECTED);
            try {
              multiuserchat.changeSubject(newsubject);
View Full Code Here

TOP

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

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.