Package org.jivesoftware.smackx.muc

Examples of org.jivesoftware.smackx.muc.SubjectUpdatedListener


        }
        mucOptionsMenu.setVisible(true);
      }
    });
   
    mucSubjectUpdateListener = new SubjectUpdatedListener() {
      public void subjectUpdated(final String subject, final String from) {
        txtTopic.getDisplay().asyncExec(new Runnable() { public void run() {
          txtTopic.setText(subject);
          appendToChatHistory(from,"changed subject to: " + subject,false,"","* ");
        }});
 
View Full Code Here


        String nickname = null;
        if (nick == null || nick.equals("")) //$NON-NLS-1$
          nickname = roomID.getNickname();
        else
          nickname = nick;
        multiuserchat.addSubjectUpdatedListener(new SubjectUpdatedListener() {
          public void subjectUpdated(String subject, String from) {
            fireSubjectUpdated(subject, from);
          }
        });
View Full Code Here

TOP

Related Classes of org.jivesoftware.smackx.muc.SubjectUpdatedListener

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.