Package com.anzsoft.client.ui

Examples of com.anzsoft.client.ui.ChatWindow


    {
      public void onMessageReceived(XmppMessage message)
      {
        if(!message.getType().equals("chat"))
          return;
        ChatWindow window = ChatWindow.openChat(message.getFromID());
       
        SoundController soundController = new SoundController();
        Sound sound = soundController.createSound(Sound.MIME_TYPE_AUDIO_MPEG,
            "sound/im.wav");
        sound.play();
       
        window.addMessage(getContactNick(message.getFromID().toStringNoResource()), message.getBody(),false);
      }
      public void onMessageSent(XmppMessage message)
      {
       
      }
View Full Code Here

TOP

Related Classes of com.anzsoft.client.ui.ChatWindow

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.